28 lines
683 B
HTML
28 lines
683 B
HTML
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-10">
|
|
|
|
Search: <input ng-model="query">
|
|
Sort by:
|
|
<select ng-model="orderProp">
|
|
<option value="title">Alphabetical</option>
|
|
<option value="begin-datetime">Date</option>
|
|
</select>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-10">
|
|
|
|
<ul class="events">
|
|
<li ng-repeat="event in events | filter:query | orderBy:orderProp">
|
|
<span><a href="/#/events/{{event.id}}">{{event.title}}</a></span>
|
|
<p>{{event['begin-datetime']}}</p>
|
|
</li>
|
|
</ul>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|