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
1.3 KiB
29 lines
1.3 KiB
{% extends "templates/lilcity/index.html" %}
|
|
{% load static %}
|
|
{% load rupluralize from plural %}
|
|
|
|
{% block content %}
|
|
<div class="section">
|
|
<div class="section__center center">
|
|
{% if school and request.user.bonus and not payment.bonus %}
|
|
{% if request.user.bonus >= payment.amount %}
|
|
<a class="btn" href="{{ request.get_full_path }}&use_bonuses=1" style="margin-bottom: 20px">Оплатить бонусами</a>
|
|
<div class="text2"><p>или купить онлайн</p></div>
|
|
{% else %}
|
|
<div class="text2"><p>Для оплаты части стоимости вы можете использовать бонусы</p></div>
|
|
<label id="use-bonuses-checkbox" class="switch" style="margin-bottom: 20px">
|
|
<input class="switch__input" data-url="{{ request.get_full_path }}" value="true" type="checkbox">
|
|
<span class="switch__content">Использовать {{ request.user.bonus|rupluralize:'бонус,бонуса,бонусов' }}</span>
|
|
</label>
|
|
{% endif %}
|
|
{% endif %}
|
|
<div id="pw-widget" class="pw-widget">
|
|
{% include "./paymentwall_widget.html" %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
{% block foot %}
|
|
<script type="text/javascript" src="{% static 'pay.js' %}"></script>
|
|
{% endblock foot %}
|
|
|