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.
univnautes-idp/base/templates/univnautes-idp/homepage.html

22 lines
511 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block content %}
<h1>Gestion des tenants</h1>
<ul>
{% for obj in object_list %}
{% if obj.schema_name != "public" %}
<li><a href="//{{ obj.domain_url }}">{{ obj.domain_url }}</a> &mdash; tenant &laquo;{{obj}}&raquo;</li>
{% endif %}
{% endfor %}
</ul>
<h1>Demander un tenant</h1>
<p>
<a href="/create/">Cr&eacute;ation d'un tenant</a>
</p>
<h1>Administration</h1>
<p>
<a href="/admin/">Interface d'administration compl&egrave;te</a> (technique)
</p>
{% endblock %}