25 lines
974 B
Plaintext
25 lines
974 B
Plaintext
extends ../layouts/interior-page
|
|
|
|
block pagetitle
|
|
span.text-muted Lunch run status:
|
|
| {{ run.name }}
|
|
|
|
block interiorcontent
|
|
.run-details(ng-show="show")
|
|
p {{ run.creatorName }}, here's your lunch run! Wait here to see real-time updates of your invitees' orders.
|
|
|
|
section
|
|
.bg
|
|
span.glyphicon.glyphicon-user
|
|
.progress
|
|
div(class='progress-bar {{ progressClass }}',role='progressbar',aria-valuenow="{{ progress }}",aria-minvalue='0',aria-maxvalue='100',style='width:{{ progress }}%')
|
|
| {{ progress }}% complete
|
|
|
|
div.row.run-order-status(ng-repeat="i in run.invitees")
|
|
.name.col-sm-3
|
|
| {{ i.name }}
|
|
br
|
|
.order.col-sm-7 {{ i.order }}
|
|
.fill.col-sm-2
|
|
a.btn.btn-default.btn-sm.btn-block(href='#/run/{{ run.id }}/order/{{ i.name }}') Fill in this order
|