mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-17 11:43:20 +00:00
20 lines
503 B
Django/Jinja
20 lines
503 B
Django/Jinja
{% extends "core/user_base.jinja" %}
|
|
|
|
{% block title %}
|
|
{% trans user_name=profile.get_display_name() %}{{ user_name }}'s stats{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block infos %}
|
|
{% if profile.permanencies %}
|
|
<div>
|
|
<h3>{% trans %}Permanencies{% endtrans %}</h3>
|
|
<p>Total: {{ total_perm_time }}</p>
|
|
<p>Foyer: {{ total_foyer_time }}</p>
|
|
<p>MDE: {{ total_mde_time }}</p>
|
|
<p>La Gommette: {{ total_gommette_time }}</p>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|