mirror of
https://github.com/ae-utbm/sith.git
synced 2025-01-09 16:41:12 +00:00
47 lines
1.7 KiB
Django/Jinja
47 lines
1.7 KiB
Django/Jinja
{% extends "core/base.jinja" %}
|
|
|
|
{%- block additional_css -%}
|
|
<link rel="stylesheet" href="{{ static('user/user_preferences.scss') }}">
|
|
{%- endblock -%}
|
|
|
|
{% block title %}
|
|
{% trans %}Preferences{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="main">
|
|
<h2>{% trans %}Preferences{% endtrans %}</h2>
|
|
<h3>{% trans %}General{% endtrans %}</h3>
|
|
<form class="form form-general" action="" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ form.as_p() }}
|
|
<input class="form-submit-btn" type="submit" value="{% trans %}Save{% endtrans %}" />
|
|
</form>
|
|
|
|
<h3>{% trans %}Trombi{% endtrans %}</h3>
|
|
|
|
{% if trombi_form %}
|
|
<form class="form form-trombi" action="{{ url('trombi:user_tools') }}" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ trombi_form.as_p() }}
|
|
<input class="form-submit-btn" type="submit" value="{% trans %}Save{% endtrans %}" />
|
|
</form>
|
|
|
|
{% else %}
|
|
<p>{% trans trombi=profile.trombi_user.trombi %}You already choose to be in that Trombi: {{ trombi }}.{% endtrans %}
|
|
<br />
|
|
<a href="{{ url('trombi:user_tools') }}">{% trans %}Go to my Trombi tools{% endtrans %}</a>
|
|
</p>
|
|
{% endif %}
|
|
|
|
|
|
{% if student_card_fragment %}
|
|
<h3>{% trans %}Student card{% endtrans %}</h3>
|
|
{{ student_card_fragment }}
|
|
<p class="justify">
|
|
{% trans %}You can add a card by asking at a counter or add it yourself here. If you want to manually
|
|
add a student card yourself, you'll need a NFC reader. We store the UID of the card which is 14 characters long.{% endtrans %}
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %} |