mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-19 20:53:22 +00:00
234 lines
9.3 KiB
Django/Jinja
234 lines
9.3 KiB
Django/Jinja
{% extends "core/base.jinja" %}
|
|
{% from "core/macros.jinja" import show_slots, show_tokens, user_subscription %}
|
|
|
|
{% block title %}
|
|
{% trans user_name=profile.get_display_name() %}{{ user_name }}'s profile{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="user_profile_page">
|
|
<div id="user_profile">
|
|
<!-- Profile -->
|
|
<div id="user_profile_infos">
|
|
<h4>{{ profile.get_full_name() }}</h4>
|
|
{% if profile.nick_name %}
|
|
<div id="user_profile_infos_nick">« {{ profile.nick_name }} »</div>
|
|
{% endif %}
|
|
|
|
{% if profile.quote %}
|
|
<div id="user_profile_infos_quote">
|
|
{{ profile.quote }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div id="user_profile_infos_items">
|
|
{% if profile.date_of_birth %}
|
|
<div>
|
|
<span class="user_profile_infos_item">{% trans %}Born: {% endtrans %}</span>
|
|
<span class="user_profile_infos_item_value">{{ profile.date_of_birth|date("d/m/Y") }}</span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if profile.department != "NA" %}
|
|
<div>
|
|
<span class="user_profile_infos_item">{% trans %}Department: {% endtrans %}</span>
|
|
<span class="user_profile_infos_item_value">{{ profile.department }}{{ profile.semester }}</span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if profile.dpt_option %}
|
|
<div>
|
|
<span class="user_profile_infos_item">{% trans %}Option: {% endtrans %}</span>
|
|
<span class="user_profile_infos_item_value">{{ profile.dpt_option }}</span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if profile.phone %}
|
|
<div>
|
|
<span class="user_profile_infos_item">{% trans %}Phone: {% endtrans %}</span>
|
|
<span class="user_profile_infos_item_value">{{ profile.phone }}</span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if profile.address %}
|
|
<div>
|
|
<span class="user_profile_infos_item">{% trans %}Address: {% endtrans %}</span>
|
|
<span class="user_profile_infos_item_value">{{ profile.address }}</span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if profile.parent_address %}
|
|
<div>
|
|
<span class="user_profile_infos_item">{% trans %}Parents address: {% endtrans %}</span>
|
|
<span class="user_profile_infos_item_value">{{ profile.parent_address }}</span>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if profile.promo %}
|
|
<div id="user_profile_infos_promo">
|
|
<img src="{{ static('core/img/promo_%02d.png' % profile.promo) }}" alt="Promo {{ profile.promo }}" />
|
|
{% trans %}Promo: {% endtrans %}{{ profile.promo }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<!-- Pictures -->
|
|
<div id="user_profile_pictures">
|
|
<div id="user_profile_pictures_bigone">
|
|
{% if profile.profile_pict %}
|
|
<img src="{{ profile.profile_pict.get_download_url() }}" alt="{% trans %}Profile{% endtrans %}"
|
|
title="{% trans %}Profile{% endtrans %}" />
|
|
{% else %}
|
|
<img src="{{ static('core/img/unknown.jpg') }}" alt="{% trans %}Profile{% endtrans %}"
|
|
title="{% trans %}Profile{% endtrans %}" />
|
|
{% endif %}
|
|
</div>
|
|
<div id="user_profile_pictures_thumbnails">
|
|
{% if profile.profile_pict %}
|
|
<img src="{{ profile.profile_pict.get_download_url() }}" alt="{% trans %}Profile{% endtrans %}"
|
|
title="{% trans %}Profile{% endtrans %}" />
|
|
{% else %}
|
|
<img src="{{ static('core/img/unknown.jpg') }}" alt="{% trans %}Profile{% endtrans %}"
|
|
title="{% trans %}Profile{% endtrans %}" />
|
|
{% endif %}
|
|
|
|
{% if profile.avatar_pict %}
|
|
<img src="{{ profile.avatar_pict.get_download_url() }}" alt="{% trans %}Avatar{% endtrans %}"
|
|
title="{% trans %}Avatar{% endtrans %}" />
|
|
{% else %}
|
|
<img src="{{ static('core/img/unknown.jpg') }}" alt="{% trans %}Avatar{% endtrans %}"
|
|
title="{% trans %}Avatar{% endtrans %}" />
|
|
{% endif %}
|
|
|
|
{% if profile.scrub_pict %}
|
|
<img src="{{ profile.scrub_pict.get_download_url() }}" alt="{% trans %}Scrub{% endtrans %}"
|
|
title="{% trans %}Scrub{% endtrans %}" />
|
|
{% else %}
|
|
<img src="{{ static('core/img/unknown.jpg') }}" alt="{% trans %}Scrub{% endtrans %}"
|
|
title="{% trans %}Scrub{% endtrans %}" />
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% if user.memberships.filter(end_date=None).exists() or user.is_in_group(settings.SITH_MAIN_BOARD_GROUP) or user == profile or user.is_in_group(settings.SITH_BAR_MANAGER_BOARD_GROUP) %}
|
|
{# if the user is member of a club, he can view the subscription state #}
|
|
<hr>
|
|
{% if profile.is_subscribed %}
|
|
{% if user == profile or user.is_root or user.is_board_member %}
|
|
<div>
|
|
{{ user_subscription(profile) }}
|
|
</div>
|
|
{% endif %}
|
|
{% if user == profile or user.is_root or user.is_board_member or user.is_launderette_manager %}
|
|
<div>
|
|
{# Shows tokens bought by the user #}
|
|
{{ show_tokens(profile) }}
|
|
{# Shows slots took by the user #}
|
|
{{ show_slots(profile) }}
|
|
</div>
|
|
{% endif %}
|
|
{% else %}
|
|
<div>
|
|
{% trans %}Not subscribed{% endtrans %}
|
|
{% if user.is_board_member %}
|
|
<a href="{{ url('subscription:subscription') }}?member={{ profile.id }}">{% trans %}New subscription{% endtrans %}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
{% if profile.was_subscribed and (user == profile or user.is_root or user.is_board_member)%}
|
|
<div id="drop_subscriptions">
|
|
<h5>{% trans %}Subscription history{% endtrans %}</h5>
|
|
<table>
|
|
<tr>
|
|
<th>{% trans %}Subscription start{% endtrans %}</th>
|
|
<th>{% trans %}Subscription end{% endtrans %}</th>
|
|
<th>{% trans %}Subscription type{% endtrans %}</th>
|
|
<th>{% trans %}Payment method{% endtrans %}</th>
|
|
</tr>
|
|
{% for sub in profile.subscriptions.all() %}
|
|
<tr>
|
|
<td>{{ sub.subscription_start }}</td>
|
|
<td>{{ sub.subscription_end }}</td>
|
|
<td>{{ sub.subscription_type }}</td>
|
|
<td>{{ sub.get_payment_method_display() }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if user.is_root or user.is_board_member %}
|
|
<div>
|
|
<hr>
|
|
<form style="margin-left: 0px;" action="{{ url('core:user_gift_create', user_id=profile.id) }}" method="post">
|
|
{% csrf_token %}
|
|
{{ gift_form.label }}
|
|
{{ gift_form.user }}
|
|
<input type="submit" value="{% trans %}Give gift{% endtrans %}">
|
|
</form>
|
|
{% if profile.gifts.exists() %}
|
|
<br>
|
|
<div id="drop_gifts">
|
|
<h5>{% trans %}Last given gift :{% endtrans %} {{ profile.gifts.order_by('-date').first() }}</h5>
|
|
<div>
|
|
<ul>
|
|
{% for gift in profile.gifts.all().order_by('-date') %}
|
|
<li>{{ gift }} <a href="{{ url('core:user_gift_delete', user_id=profile.id, gift_id=gift.id) }}">{% trans %}Delete{% endtrans %}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
{% trans %}No gift given yet{% endtrans %}
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
|
|
{% 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();
|
|
}
|
|
});
|
|
} );
|
|
$(function(){
|
|
$("#user_profile_pictures_thumbnails img").click(function () {
|
|
$("#user_profile_pictures_bigone img").attr("src", $(this)[0].src);
|
|
$("#user_profile_pictures_bigone img").attr("alt", $(this)[0].alt);
|
|
$("#user_profile_pictures_bigone img").attr("title", $(this)[0].title);
|
|
})
|
|
});
|
|
$(function(){
|
|
$("#drop_gifts").accordion({
|
|
heightStyle: "content",
|
|
collapsible: true,
|
|
active: false
|
|
});
|
|
});
|
|
$(function(){
|
|
$("#drop_subscriptions").accordion({
|
|
heightStyle: "content",
|
|
collapsible: true,
|
|
active: false
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
|