Files
dss.web/client/app/directives/notifications/notifications.html
2015-12-12 19:13:52 +00:00

15 lines
664 B
HTML

<li ng-repeat="notification in notifications">
<a class="notification-wrapper" ui-sref="root.users.mix({user: mix.user.slug, mix: notification.target})"
ng-class="notification.accepted_date ? '' : 'notification-new'">
<img class="notification-details-profile-image" ng-src="{{notification.from_user.profile_image_small}}" alt="">
<div class="details notification-details">
<div class="name">
{{notification.from_user.first_name}}
</div>
<div class="message">
{{notification.verb}}&nbsp;{{notification.target_desc}}
</div>
</div>
</a>
</li>