File "app-notifiche.html"

Full Path: /srv/www/www.cadoro.it/app/src/templates/app-notifiche.html
File size: 943 bytes
MIME-type: text/html
Charset: utf-8

<ion-view>
  <ion-nav-title>
    <a href="#/app/home" nav-clear menu-close><img src="img/logo.png"></a>
  </ion-nav-title>
  <ion-content padding="true">
    <div ng-class="{'well well-white mb10': true, 'unread': !notification.read}"
         ng-repeat="notification in notifications">
      <div class="mb5" ng-if="notification.date">
        <strong>{{notification.date|mformat:'DD/MM/YYYY'}}</strong>
      </div>
      <img ng-src="{{notification.image}}" alt="" class="img-responsive" ng-if="notification.image">
      <h4 class="mt5">
        {{notification.title}}
      </h4>
      <div class="mt5" ng-if="notification.description" ng-bind-html="notification.description"></div>
      <div class="mt10">
        <span class="button" ng-click="read(notification)">LEGGI</span>
      </div>
    </div>
    <p class="mt20 text-center" ng-if="notifications.length == 0">
      Non ci sono notifiche.
    </p>
  </ion-content>
</ion-view>