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.
65 lines
3.1 KiB
65 lines
3.1 KiB
{% extends "templates/lilcity/index.html" %} {% load static %} {% block content %}
|
|
<div class="section section_gray section_menu">
|
|
<div class="section__center center center_xs">
|
|
<div class="menu">
|
|
<a class="menu__link" href="{% url 'user-edit-profile' user.id %}">Профиль</a>
|
|
<a class="menu__link active" href="{% url 'user-edit-notifications' user.id %}">Уведомления</a>
|
|
<a class="menu__link" href="{% url 'user-edit-payments' user.id %}">Платежи</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% if not user.is_email_proved %}
|
|
<div class="section section_confirm">
|
|
<div class="section__center center center_xs">
|
|
<div class="confirm">
|
|
<div class="confirm__title title">Подтверждение почты</div>
|
|
<div class="confirm__content">На электронный адрес
|
|
<strong>{{ user.email }}</strong> отправлено письмо для подтверждения.</div>
|
|
<div class="confirm__content">Если письмо где-то затерялось, вы можете повторить отправку письма для подтверждения. Отправить?</div>
|
|
<a href="{% url 'resend-email-verify' %}" class="confirm__btn btn btn_dark">ОТПРАВИТЬ</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
<div class="section section_gray">
|
|
<div class="section__center center center_xs">
|
|
<div class="form">
|
|
<div class="form__group">
|
|
<div class="form__title">Уведомления и рассылка</div>
|
|
<label class="form__switch switch switch_blue">
|
|
<input class="switch__input" type="checkbox" checked>
|
|
<span class="switch__content">Новости школы</span>
|
|
</label>
|
|
<label class="form__switch switch switch_blue">
|
|
<input class="switch__input" type="checkbox" checked>
|
|
<span class="switch__content">Новые курсы</span>
|
|
</label>
|
|
<label class="form__switch switch switch_blue">
|
|
<input class="switch__input" type="checkbox">
|
|
<span class="switch__content">Бонусы от партнеров</span>
|
|
</label>
|
|
<label class="form__switch switch switch_blue">
|
|
<input class="switch__input" type="checkbox">
|
|
<span class="switch__content">Акции</span>
|
|
</label>
|
|
<label class="form__switch switch switch_blue">
|
|
<input class="switch__input" type="checkbox" checked>
|
|
<span class="switch__content">Партнерские акции</span>
|
|
</label>
|
|
<label class="form__switch switch switch_blue">
|
|
<input class="switch__input" type="checkbox">
|
|
<span class="switch__content">Новости компании</span>
|
|
</label>
|
|
<label class="form__switch switch switch_blue">
|
|
<input class="switch__input" type="checkbox">
|
|
<span class="switch__content">Комментарии в которых участвуете</span>
|
|
</label>
|
|
</div>
|
|
<div class="form__foot">
|
|
<button class="form__btn btn btn_md">СОХРАНИТЬ</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %} |