{% extends "hosting/base_short.html" %} {% load staticfiles bootstrap3 %} {% load i18n %} {% block content %}

{% trans "My Orders" %}

{% if messages %}
{% for message in messages %} {{ message }} {% endfor %}
{% endif %}
{% for order in orders %} {% endfor %}
{% trans "Order Nr." %} {% trans "Date" %} {% trans "Amount" %} {% trans "Status" %}
{{ order.id }} {{ order.created_at | date:"M d, Y" }} {{ order.price }} {% if order.approved %} Approved {% else %} Declined {% endif %} {% trans "View Detail" %}
{% if is_paginated %} {% endif %}
{% endblock %}