mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-15 10:43:22 +00:00
Sli
655d72a2b1
* Migrate alpine * Migrate jquery and jquery-ui * Migrate shorten * Add babel for javascript * Introduce staticfiles django app * Only bundle -index.js files in static/webpack * Unify scss and webpack generated files * Convert scss calls to static * Add --clear-generated option to collectstatic * Fix docs warnings
69 lines
2.5 KiB
Django/Jinja
69 lines
2.5 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=user.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 profile.customer %}
|
|
<h3>{% trans %}Student cards{% endtrans %}</h3>
|
|
|
|
{% if profile.customer.student_cards.exists() %}
|
|
<ul class="student-cards">
|
|
{% for card in profile.customer.student_cards.all() %}
|
|
<li>
|
|
{{ card.uid }}
|
|
-
|
|
<a href="{{ url('counter:delete_student_card', customer_id=profile.customer.pk, card_id=card.id) }}">
|
|
{% trans %}Delete{% endtrans %}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<em class="no-cards">{% trans %}No student card registered.{% endtrans %}</em>
|
|
<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 %}
|
|
|
|
<form class="form form-cards" action="{{ url('counter:add_student_card', customer_id=profile.customer.pk) }}"
|
|
method="post">
|
|
{% csrf_token %}
|
|
{{ student_card_form.as_p() }}
|
|
<input class="form-submit-btn" type="submit" value="{% trans %}Save{% endtrans %}" />
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %} |