mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 13:11:33 +00:00
15 lines
664 B
HTML
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}} {{notification.target_desc}}
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</li>
|