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.
 
 
 
 

25 lines
1.1 KiB

{% 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 class='license_{{ license.id }}'>
<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='w100 left'>{% if license.status == 0 %}<a href='#' class='delete_license' data-id='{{ license.pk }}'>Удалить</a>{% endif %}</div>
<div class='clear'></div>
</div>
{% endfor %}
{% endblock %}
{% block js %}
<script src="{{ STATIC_URL }}js/license.js"></script>
{% endblock %}