2020-11-15 19:41:23 +00:00
|
|
|
{% comment %}
|
2020-11-23 16:06:37 +00:00
|
|
|
Re2o est un logiciel d'administration développé initiallement au Rézo Metz. Il
|
2020-11-15 19:41:23 +00:00
|
|
|
se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
quelques clics.
|
|
|
|
|
|
|
|
Copyright © 2017 Lara Kermarec
|
|
|
|
Copyright © 2017 Augustin Lemesle
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
{% endcomment %}
|
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
{% load static %}
|
|
|
|
<nav class="navbar navbar-default navbar-static-bottom">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<p class="navbar-text">{{ name_website }} {% trans "powered by" %} Re2o 2016–2020.
|
|
|
|
{% blocktrans trimmed %}
|
|
|
|
Brought to you with <i class="fa fa-heart text-danger"></i>.
|
|
|
|
{% endblocktrans %}</p>
|
|
|
|
<ul class="nav navbar-nav">
|
|
|
|
<li>
|
|
|
|
<a href="{% url 'about' %}">
|
|
|
|
<i class="fa fa-info-circle"></i> {% trans "About" %}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<ul class="nav navbar-nav navbar-right">
|
|
|
|
<li>
|
|
|
|
<a href="#">
|
|
|
|
<i class="fa fa-arrow-up"></i> {% trans "Top" %}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<p class="navbar-text">{% blocktrans trimmed %}
|
|
|
|
This software is under the terms of the
|
|
|
|
<a href="http://www.gnu.org/licenses/gpl-2.0.txt" target="_blank" rel="nofollow">GPLv2</a>
|
|
|
|
License.
|
|
|
|
{% endblocktrans %}</p>
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|