{% extends "base/module_base.html" %} {% set active_page = info['display_string']+' dashboard' %} {% block pagehead %} Orders {% endblock %} {% block sidebar %} {%include info['module_name']+'/blocks/sidebar.html'%} {%endblock%} {% block content %}
{%for order in orders%} {%endfor%}
ref time status customer name customer email
{{order.get_ref()}} {{order.get_std_formatted_time()}} {{order.status}} {{order.billing_detail.first_name}} {{order.billing_detail.last_name}} {{order.billing_detail.email}} view

{% endblock %}