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.
29 lines
705 B
29 lines
705 B
{% extends "base.html" %}
|
|
{% load pytils_numeral %}
|
|
{% block title %}Подтвердить платёж{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Купить лицензию</h2>
|
|
|
|
{% if form.non_field_errors %}
|
|
<p class="error">{{ form.non_field_errors }}</p>
|
|
{% endif %}
|
|
|
|
<div class='content-white'>
|
|
<div>
|
|
|
|
<form class="" action="{{ ya_url }}" method="post">
|
|
{{ form.as_ul }}
|
|
<p>Сумма:
|
|
{{ form.sum.value }}</p>
|
|
<div class="">
|
|
<input type="submit" name="submit" value="Перейти" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{% endblock %}
|
|
|
|
|