-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
35 lines (31 loc) · 1.03 KB
/
list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<input type="text" ng-model="search" class="search-query" placeholder="Search">
<table>
<thead>
<tr>
<th>Project</th>
<th>Description</th>
<th><a href="#/new"><i class="icon-plus-sign"></i></a></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="project in vm.projects | filter:search | orderBy:'name'">
<td><a ng-href="{{project.site}}" target="_blank">{{project.name}}</a></td>
<td>{{project.description}}</td>
<td>
<a ng-href="#/edit/{{project.$id}}"><i class="icon-pencil"></i></a>
</td>
</tr>
<select ng-model="vm.autoSelect">
<option value="complete">Complete</option>
<option value="partial">Partial</option>
<option value="always">Always</option>
<option value="never">Never</option>
</select>
<p>{{vm.counter}}</p>
<filter-select
ng-model="vm.selectedCurrencyPair"
source-provider="vm.currencyPairs"
auto-select="{{vm.autoSelect}}">
</filter-select>
</tbody>
</table>