-
Notifications
You must be signed in to change notification settings - Fork 0
/
orders.html
34 lines (34 loc) · 1.06 KB
/
orders.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
<table class="table">
<tr>
<th>Carnivore</th>
<th>Bread</th>
<th>Filling</th>
<th>Sauce</th>
<th class="no-print">Last Run</th>
<th class="no-print">Num Runs</th>
<th class="no-print"></th>
</tr>
<tr ng-repeat="order in orders">
<td>
<strong>{{order.initials}}</strong>
<span style="color: gray;" class="no-print">{{order.name}}</span>
</td>
<td>
<span ng-show="order.toasted">toasted</span>
{{order.bread}}
</td>
<td>{{order.filling.join(', ')}}</td>
<td>{{order.sauce}}</td>
<td class="no-print">{{order.runs[order.runs.length - 1].date}}</td>
<td class="no-print">{{order.runs.length}}</td>
<td class="no-print">
<a ng-href="#/order/{{order.initials}}" style="color: blue;"><i class="fa fa-pencil-square-o"></i></a>
</td>
</tr>
</table>
<p class="no-print">
<a href="#/order/new" class="btn btn-primary">
<i class="fa fa-plus"></i>
new order
</a>
</p>