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/agent_homepage.html

25 lines
515 B
HTML

{% extends "authentic2/homepage.html" %}
{% load i18n %}
{% block title %}
{% trans "Authentic" %}
{% endblock %}
{% block appbar %}
{{ block.super }}
<a href="{% url "account_management" %}">{% trans "Your account" %}</a>
{% endblock %}
{% block content %}
<h2 id="services-header">Services</h2>
<ul>
{% for name, url, slug in service_links %}
<li>
<a id="service-link-{{ slug }}" href="{{ url }}">
{{ name }}
</a>
</li>
{% endfor %}
</ul>
{% endblock %}