You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
800 B

{% extends "base.html" %}
{% load pytils_numeral %}
{% block title %}Купить лицензию{% endblock %}
{% block content %}
<a href="{% url 'customer_order_license' %}">Купить лицензию</a><br /><br />
<a href="{% url 'customer_license_list' %}">Все счета</a><br /><br />
<h1>История оплат</h1>
{% for license in licenses %}
<div>
<div class='w100 left'>{{ license.paid_date }}</div>
<div class='w100 left'>{{ license.id }}</div>
<div class='w100 left'>{{ license.pay_sum }}</div>
<div class='w100 left'>{{ license.term }}</div>
<div class='w200 left'>{{ license.date_from }} - {{ license.date_to }}</div>
<div class='w100 left'>{{ license.get_status_display }}</div>
<div class='clear'></div>
</div>
{% endfor %}
{% endblock %}