mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 14:13:21 +00:00
21 lines
356 B
HTML
21 lines
356 B
HTML
{% extends "core/base.html" %}
|
|
|
|
{% block title %}
|
|
{{ user.get_display_name }}'s tools
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3>User Tools</h3>
|
|
<p><a href="{% url 'core:user_profile' user.id %}">Back to profile</a></p>
|
|
|
|
<ul>
|
|
{% if perms.core.add_group %}
|
|
<li><a href="{% url 'core:group_list' %}">Groups</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|