mirror of
https://github.com/ae-utbm/sith.git
synced 2025-04-15 02:20:20 +00:00
32 lines
792 B
HTML
32 lines
792 B
HTML
{% extends "core/base.html" %}
|
|
|
|
{% block title %}
|
|
{{ profile.get_display_name }}'s profile
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3>User Profile</h3>
|
|
<p><a href="{% url 'core:user_list' %}">Back to list</a></p>
|
|
|
|
<ul>
|
|
{% if user.id == profile.id %}
|
|
<li><a href="{% url 'core:user_tools' %}">Tools</a></li>
|
|
{% endif %}
|
|
{% if perms.core.change_user or user.id == profile.id %}
|
|
<li><a href="{% url 'core:user_edit' profile.id %}">Edit</a></li>
|
|
{% endif %}
|
|
{% if perms.core.change_prop_user %}
|
|
<li><a href="{% url 'core:user_prop' profile.id %}">Props</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
|
|
<p>
|
|
You're seeing the profile of <strong>{{ profile.get_full_name }}</strong><br/>
|
|
<strong>{{ profile.nick_name }}</strong><br/>
|
|
<em>{{ profile.date_of_birth|date:"d/m/Y" }}</em>
|
|
|
|
</p>
|
|
{% endblock %}
|
|
|
|
|