This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
authentic2-pratic/src/authentic2_pratic/templates/authentic2_pratic/homepage.html

25 lines
679 B
HTML

{% extends "authentic2_pratic/base.html" %}
{% load i18n %}
{% block beforecontent %}
{% endblock %}
{% block appbar %}
<h2>{% trans "Welcome" %}</h2>
{% endblock %}
{% block content %}
<div id="content">
<div id="user-info">
{{ user.get_full_name }}
(<a href="{% url "auth_password_change" %}">{% trans "Password change" %}</a>)
</div>
<ul class="apps">
<li id="collectivities"><a href="{% url "a2-pratic-collectivities" %}">{% trans "Collectivities" %}</a></li>
<li id="services"><a href="{% url "a2-pratic-services" %}">{% trans "Services" %}</a></li>
</ul>
<br style="clear: both;"/>
</div>
{% endblock %}