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
553 B

  1. <ion-view view-title="Events">
  2. <ion-content>
  3. <ion-refresher
  4. pulling-text="{{'Pull_to_refresh' | translate}}..."
  5. on-refresh="doRefresh()">
  6. </ion-refresher>
  7. <a class="item item-thumbnail-left" href="#/app/events/{{event._id}}"
  8. ng-repeat="event in events">
  9. <img ng-src="{{event.img}}">
  10. <div class="badge item-note">{{event.user.username}}</div>
  11. <h2>{{event.title}}</h2>
  12. <p>{{event.description}}</p>
  13. <p>{{event.date | date: 'HH:mm, dd/MM/yyyy'}}</p>
  14. </a>
  15. </ion-content>
  16. </ion-view>