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.
39 lines
1.5 KiB
39 lines
1.5 KiB
{% extends request.is_ajax|yesno:'nullcont.htm,abonapp/ext.htm' %}
|
|
{% block content %}
|
|
|
|
|
|
<legend>Начисление средств на счёт</legend>
|
|
{% if warntext %}
|
|
<div class="alert alert-warning alert-dismissable">
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
|
{{ warntext }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
<form role="form" action="{% url 'abon_amount_link' abon_group.id abon.id %}" method="post"> {% csrf_token %}
|
|
|
|
<div class="form-group-sm">
|
|
<label for="amount">Количество денег</label>
|
|
<div class="input-group">
|
|
<span class="input-group-addon">⃏</span>
|
|
<input id="amount" type="text" name="amount" placeholder="0.0" class="form-control" required pattern="\d+">
|
|
</div>
|
|
</div>
|
|
<input type="hidden" name="abonid" value="{{ abon.id }}"><br>
|
|
<div class="btn-group">
|
|
<button type="submit" class="btn btn-sm btn-primary">
|
|
<span class="glyphicon glyphicon-save"></span> Пополнить
|
|
</button>
|
|
<button type="reset" class="btn btn-sm btn-default">
|
|
<span class="glyphicon glyphicon-remove-circle"></span> Сбросить
|
|
</button>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|