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.

17 lines
742 B

7 years ago
7 years ago
  1. <ion-view view-title="{{'Notifications' | translate}}">
  2. <ion-content class="has-footer">
  3. <ion-refresher
  4. pulling-text="{{'Pull_to_refresh' | translate}}..."
  5. on-refresh="doRefresh()">
  6. </ion-refresher>
  7. <a ng-repeat="notification in notifications | orderBy: '-date'"
  8. class="item item-icon-left" href="#/app/{{notification.link}}">
  9. <i class="icon ion-android-notifications-none"></i>
  10. <h2>{{notification.message}}</h2>
  11. <div class="item-note text-right">
  12. <div class="o_text_purple600">{{notification.date | date:"dd/MM"}}</div>
  13. <div class="o_text_purple600">{{notification.date | date:"HH:mm:ss"}}</div>
  14. </div>
  15. </a>
  16. </ion-content>
  17. </ion-view>