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.

32 lines
1.1 KiB

  1. <ion-view view-title="Event">
  2. <ion-content>
  3. <a class="item item-avatar" ng-href="#/app/users/{{event.user._id}}">
  4. <img ng-src="{{event.user.img}}">
  5. <h2>{{event.user.username}}</h2>
  6. <p>{{event.user.shortDescription}}</p>
  7. </a>
  8. <div class="item item-image" ng-show="event.img">
  9. <img ng-src="{{event.img}}">
  10. </div>
  11. <div class="item">
  12. <div class="item-note">{{event.date | date: 'HH:mm, dd/MM/yyyy'}}</div>
  13. <h2>{{event.title}}</h2>
  14. <p>{{event.description}}</p>
  15. <p>
  16. <span class="o_badge c_blueGrey300" ng-repeat="category in event.categories">
  17. {{category.name}}
  18. </span>
  19. </p>
  20. </div>
  21. <div class="item" ng-show="markers[0]">
  22. <h2>Place: {{event.location.direction}}</h2>
  23. </div>
  24. <leaflet ng-show="markers[0]"
  25. width="100%" height="40%" markers="markers" center="center" tiles="tiles" id="map-simple-map"></leaflet>
  26. <a class="item item-icon-left ctext_indigo500" ng-click="share(event)">
  27. <i class="icon ion-android-share-alt"></i> Share
  28. </a>
  29. </ion-content>
  30. </ion-view>