You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
620 B

  1. <ion-view view-title="{{'Notifications' | translate}} {{user.username}}">
  2. <ion-content>
  3. <div class="item item-body">
  4. <a ng-repeat="notification in notifications | orderBy: '-date'" class="item item-avatar" href="#/app/{{notification.link}}">
  5. <img ng-src="img/{{notification.type}}.png"/>
  6. <h2>{{notification.description}}</h2>
  7. <div class="item-note text-right">
  8. <div class="positive">{{notification.date | date:"dd/MM"}}</div>
  9. <div class="positive">{{notification.date | date:"HH:mm:ss"}}</div>
  10. </div>
  11. </a>
  12. </div>
  13. </ion-content>
  14. </ion-view>