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

{% trans "My Bills" %}

{% if messages %}
{% for message in messages %} {{ message }} {% endfor %}
{% endif %}
{% for order in orders %} {% endfor %}
{% trans "Order Nr." %} {% trans "Date" %} {% trans "Amount" %}
{{ order.id }} {{ order.created_at | date:"M d, Y H:i" }} {{ order.price|floatformat:2|intcomma }} {% trans 'See Invoice' %}
{% if is_paginated %} {% endif %}
{% endblock %}