Page layout for run and order create pages
This commit is contained in:
@@ -1,16 +1,18 @@
|
|||||||
div(ng-show='show')
|
extends ../layouts/interior-page
|
||||||
h2.text-center
|
|
||||||
|
block pagetitle
|
||||||
span.text-muted Enter your order for:
|
span.text-muted Enter your order for:
|
||||||
br
|
|
||||||
| {{ run.name }}
|
| {{ run.name }}
|
||||||
|
|
||||||
p.text-center Hi {{ invitee.name }}! You are all going to {{ run.restaurant }}.
|
block interiorcontent
|
||||||
span(ng-show='showMenuUrl') Here is the
|
div(ng-show='show')
|
||||||
a(href='{{ run.menuUrl }}') menu.
|
p Hi {{ invitee.name }}! You are all going to {{ run.restaurant }}.
|
||||||
|
span(ng-show='showMenuUrl') Here is the
|
||||||
|
a(href='{{ run.menuUrl }}') menu.
|
||||||
|
|
||||||
form.form.create-order-form(role='form')
|
form.form.create-order-form(role='form')
|
||||||
div.form-group
|
div.form-group
|
||||||
textarea#order.form-control(ng-model='invitee.order',placeholder='Your order')
|
textarea#order.form-control(ng-model='invitee.order',placeholder='Your order')
|
||||||
|
|
||||||
button.btn.btn-lg.btn-primary.btn-block(ng-click='submit(invitee)') Submit Order
|
button.btn.btn-lg.btn-primary.btn-block(ng-click='submit(invitee)') Submit Order
|
||||||
|
|
||||||
|
|||||||
@@ -1,22 +1,24 @@
|
|||||||
.container.run-details(ng-show="show")
|
extends ../layouts/interior-page
|
||||||
h1.text-center
|
|
||||||
span.text-muted Lunch run status:
|
|
||||||
br
|
|
||||||
| {{ run.name }}
|
|
||||||
|
|
||||||
p.text-center {{ run.creatorName }}, here's your lunch run! Wait here to see real-time updates of your invitees' orders.
|
block pagetitle
|
||||||
|
span.text-muted Lunch run status:
|
||||||
|
| {{ run.name }}
|
||||||
|
|
||||||
section
|
block interiorcontent
|
||||||
.bg
|
.run-details(ng-show="show")
|
||||||
span.glyphicon.glyphicon-user
|
p {{ run.creatorName }}, here's your lunch run! Wait here to see real-time updates of your invitees' orders.
|
||||||
.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")
|
section
|
||||||
.name.col-sm-3
|
.bg
|
||||||
| {{ i.name }}
|
span.glyphicon.glyphicon-user
|
||||||
br
|
.progress
|
||||||
.order.col-sm-7 {{ i.order }}
|
div(class='progress-bar {{ progressClass }}',role='progressbar',aria-valuenow="{{ progress }}",aria-minvalue='0',aria-maxvalue='100',style='width:{{ progress }}%')
|
||||||
.fill.col-sm-2
|
| {{ progress }}% complete
|
||||||
a.btn.btn-default.btn-sm.btn-block(href='#/run/{{ run.id }}/order/{{ i.name }}') Fill in this order
|
|
||||||
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user