mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-18 04:03:22 +00:00
93 lines
3.1 KiB
Django/Jinja
93 lines
3.1 KiB
Django/Jinja
{% extends "core/user_base.jinja" %}
|
|
|
|
{% block title %}
|
|
{% trans user_name=profile.get_display_name() %}{{ user_name }}'s profile{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block infos %}
|
|
|
|
<div id="user_profile_container">
|
|
<div id="user_profile">
|
|
<div id="right_column">
|
|
<div id="pictures">
|
|
{% if profile.profile_pict %}
|
|
<img src="{{ profile.profile_pict.get_download_url() }}" alt="{% trans %}Profile{% endtrans %}" id="picture" />
|
|
{% else %}
|
|
<img src="{{ static('core/img/unknown.jpg') }}" alt="{% trans %}Profile{% endtrans %}" id="picture" />
|
|
{% endif %}
|
|
</div>
|
|
<p id="quote"><em>{{ profile.quote }}</em></p>
|
|
</div>
|
|
<div id="left_column">
|
|
<h4>{{ profile.get_full_name() }}</h4>
|
|
{% if profile.nick_name %}
|
|
<p id="nickname">« {{ profile.nick_name }} »</p>
|
|
{% endif %}
|
|
{% if profile.date_of_birth %}
|
|
<p>{% trans %}Born: {% endtrans %}{{ profile.date_of_birth|date("d/m/Y") }}</p>
|
|
{% endif %}
|
|
{% if profile.department != "NA" %}
|
|
<p>{{ profile.department }}{{ profile.semester }}
|
|
{% endif %}
|
|
{% if profile.dpt_option %}
|
|
<br>{% trans %}Option: {% endtrans %}{{ profile.dpt_option }}
|
|
{% endif %}
|
|
{% if profile.phone %}
|
|
<p>
|
|
{{ profile.phone }}
|
|
</p>
|
|
{% endif %}
|
|
</p>
|
|
{% if profile.promo %}
|
|
<p><img src="{{ static('core/img/promo_%02d.png' % profile.promo) }}" alt="Promo {{ profile.promo }}" class="promo_pict" />
|
|
{% trans %}Promo: {% endtrans %}{{ profile.promo }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% if user.membership.filter(end_date=None).exists() or user.is_in_group(settings.SITH_MAIN_BOARD_GROUP) or user == profile %}
|
|
{# if the user is member of a club, he can view the subscription state #}
|
|
<p>
|
|
{% if get_subscriber(profile).is_subscribed() %}
|
|
{% trans subscription_end=get_subscriber(profile).subscriptions.last().subscription_end %}Subscribed until {{ subscription_end }}{% endtrans %}<br/>
|
|
{% trans %}Account number: {% endtrans %}{{ profile.customer.account_id }}<br/>
|
|
{% if get_subscriber(profile).tokens.exists() %}
|
|
<ul>
|
|
{% for i in get_subscriber(profile).tokens.all() %}
|
|
<li>{{ i }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% else %}
|
|
{% trans %}Not subscribed{% endtrans %}
|
|
{% if user.is_in_group(settings.SITH_MAIN_BOARD_GROUP) %}
|
|
<a href="{{ url('subscription:subscription') }}?member={{ profile.id }}">{% trans %}New subscription{% endtrans %}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block script %}
|
|
{{ super() }}
|
|
<script>
|
|
$( function() {
|
|
var keys = [];
|
|
var pattern = "71,85,89,71,85,89";
|
|
$(document).keydown(function (e) {
|
|
keys.push(e.keyCode);
|
|
if (keys.toString()==pattern) {
|
|
keys = [];
|
|
$("#right_column img").attr("src", "{{ static('core/img/yug.jpg') }}");
|
|
}
|
|
if (keys.length==6) {
|
|
keys.shift();
|
|
}
|
|
});
|
|
} );
|
|
</script>
|
|
{% endblock %}
|
|
|