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
813 B
20 lines
813 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_paid_list' %}">Оплаченные лицензии</a><br /><br />
|
|
<h1>Выписанные счета</h1>
|
|
{% for license in licenses %}
|
|
<div>
|
|
<div class='w100 left'>{{ license.id }}</div>
|
|
<div class='w100 left'>{{ license.order_date }}</div>
|
|
<div class='w100 left'>{{ license.term }}</div>
|
|
<div class='w100 left'>{{ license.get_payform_display }}</div>
|
|
<div class='w100 left'>{{ license.get_status_display }}</div>
|
|
<div class='w100 left'>{{ license.get_action }}</div>
|
|
<div class='clear'></div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|