Skip to content

Instantly share code, notes, and snippets.

@adammiller
Created September 5, 2014 20:00
Show Gist options
  • Save adammiller/7af53e80071902a94e2f to your computer and use it in GitHub Desktop.
Save adammiller/7af53e80071902a94e2f to your computer and use it in GitHub Desktop.
.sticky-wrap [fw-responsive-table]
table.sticky-enabled
thead
tr.grey
th Order
th Status
th Buyer
th Seller
th Deliverer
th Items
th Total
th Delivery Date
tbody#admin-orders-list
tr ng-repeat="order in orders"
td.order_number
.alert_icon ng-bind-html='order.alert_icon | safeHtml'
.status_icon ng-bind-html='order.status_icon | safeHtml'
.number
a href="{{order.order_link}}"
|{{order.order_number}}
td.status
.state
|{{order.state}}
td.buyer_name
|{{order.buyer_name}}
td.seller_name
|{{order.seller_name}}
td.deliverer
|{{order.deliverer}}
td.item_count
|{{order.item_count}}
td.subtotal_as_currency
.seller_subtotal_as_currency.seller-price.hidden
|{{order.seller_subtotal_as_currency}}
.buyer_total_as_currency.buyer-price
|{{order.buyer_total_as_currency}}
td.receiving_date
|{{order.delivery_date}}
tr.seller-alerts.alert-row.template.hidden
td colspan=10
ul ng-repeat="seller_alert in order.seller_alerts"
li ng-bind-html='seller_alert | safeHtml'
table.sticky-thead
thead
tr.grey
th Order
th Status
th Buyer
th Seller
th Deliverer
th Items
th Total
th Delivery Date
table.sticky-col
thead
tr.grey
th Order
tbody
tr ng-repeat="order in orders"
td.order_number
.alert_icon ng-bind-html='order.alert_icon | safeHtml'
.status_icon ng-bind-html='order.status_icon | safeHtml'
.number
a href="{{order.order_link}}"
|{{order.order_number}}
table.sticky-intersect
thead
tr.grey
th Order
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment