mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
Ajout d'une page A propos présantant l'association, re2o et listant c'est principaux contributeurs. Ajout d'un champ description
(dans les parametres d'association) dans l'onglet préférences. issue #64
This commit is contained in:
parent
2aec9782ed
commit
6b253f5188
7 changed files with 98 additions and 2 deletions
20
preferences/migrations/0028_assooption_description.py
Normal file
20
preferences/migrations/0028_assooption_description.py
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.10.7 on 2018-01-08 14:12
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('preferences', '0027_merge_20180106_2019'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='assooption',
|
||||||
|
name='description',
|
||||||
|
field=models.TextField(default=''),
|
||||||
|
),
|
||||||
|
]
|
|
@ -557,6 +557,7 @@ class AssoOption(PreferencesModel):
|
||||||
null=True,
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
)
|
)
|
||||||
|
description = models.TextField(default="")
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
permissions = (
|
permissions = (
|
||||||
|
|
|
@ -181,6 +181,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
<td>{{ assooptions.utilisateur_asso }}</td>
|
<td>{{ assooptions.utilisateur_asso }}</td>
|
||||||
<th>Moyen de paiement automatique</th>
|
<th>Moyen de paiement automatique</th>
|
||||||
<td>{{ assooptions.payment }}</td>
|
<td>{{ assooptions.payment }}</td>
|
||||||
|
<th>Description de l'association</th>
|
||||||
|
<td>{{ assooptions.description }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
|
62
re2o/templates/re2o/about.html
Normal file
62
re2o/templates/re2o/about.html
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
{% extends "re2o/sidebar.html" %}
|
||||||
|
{% comment %}
|
||||||
|
Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
||||||
|
se veut agnostique au réseau considéré, de manière à être installable en
|
||||||
|
quelques clics.
|
||||||
|
|
||||||
|
Copyright © 2017 Gabriel Détraz
|
||||||
|
Copyright © 2017 Goulven 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 bootstrap3 %}
|
||||||
|
|
||||||
|
{% block title %}Historique{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<h2>À propos de {{AssoName}}</h2>
|
||||||
|
{{ description }}
|
||||||
|
<h2>À propos de Re2o</h2>
|
||||||
|
<p>Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
||||||
|
se veut agnostique au réseau considéré, de manière à être installable en
|
||||||
|
quelques clics.
|
||||||
|
</p>
|
||||||
|
<h3>Liste des contributeurs</h3>
|
||||||
|
<ul>
|
||||||
|
<li>Gabriel Detraz</li>
|
||||||
|
<li>Maël Kervella</li>
|
||||||
|
<li>Hugo Levy-Falk</li>
|
||||||
|
<li>Augustin Lemesle</li>
|
||||||
|
<li>Goulven Kermarec</li>
|
||||||
|
<li>David Sinquin</li>
|
||||||
|
<li>root</li>
|
||||||
|
<li>Matthieu Michelet</li>
|
||||||
|
<li>Guillaume Goessels</li>
|
||||||
|
<li>Éloi Alain</li>
|
||||||
|
<li>Simon Brélivet</li>
|
||||||
|
<li>Laouen Fernet</li>
|
||||||
|
<li>Pierre Cadart</li>
|
||||||
|
<li>Thibault Deboutray</li>
|
||||||
|
<li>Eloi Alain</li>
|
||||||
|
<li>Daniel Stan</li>
|
||||||
|
<li>Hugo Hervieux</li>
|
||||||
|
<li>Thomas Goudine</li>
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
{% endblock %}
|
||||||
|
|
|
@ -40,10 +40,11 @@ from django.conf.urls import include, url
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.contrib.auth import views as auth_views
|
from django.contrib.auth import views as auth_views
|
||||||
|
|
||||||
from .views import index
|
from .views import index, about_page
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
url(r'^$', index, name='index'),
|
url(r'^$', index, name='index'),
|
||||||
|
url(r'^about/$', about_page, name='about'),
|
||||||
url('^logout/', auth_views.logout, {'next_page': '/'}),
|
url('^logout/', auth_views.logout, {'next_page': '/'}),
|
||||||
url('^', include('django.contrib.auth.urls')),
|
url('^', include('django.contrib.auth.urls')),
|
||||||
url(r'^admin/', include(admin.site.urls)),
|
url(r'^admin/', include(admin.site.urls)),
|
||||||
|
|
|
@ -35,7 +35,7 @@ from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
|
||||||
from reversion.models import Version
|
from reversion.models import Version
|
||||||
from django.contrib import messages
|
from django.contrib import messages
|
||||||
from preferences.models import Service
|
from preferences.models import Service
|
||||||
from preferences.models import OptionalUser, GeneralOption
|
from preferences.models import OptionalUser, GeneralOption, AssoOption
|
||||||
import users, preferences, cotisations, topologie, machines
|
import users, preferences, cotisations, topologie, machines
|
||||||
|
|
||||||
def form(ctx, template, request):
|
def form(ctx, template, request):
|
||||||
|
@ -154,3 +154,12 @@ def history(request, application, object_name, object_id):
|
||||||
{'reversions': reversions, 'object': instance}
|
{'reversions': reversions, 'object': instance}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def about_page(request):
|
||||||
|
option = AssoOption.objects.get()
|
||||||
|
return render(
|
||||||
|
request,
|
||||||
|
"re2o/about.html",
|
||||||
|
{'description': option.description , 'AssoName' : option.name}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
|
@ -91,6 +91,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
{% can_view_app logs %}
|
{% can_view_app logs %}
|
||||||
<li><a href="{% url "logs:index" %}">Statistiques</a></li>
|
<li><a href="{% url "logs:index" %}">Statistiques</a></li>
|
||||||
{% acl_end %}
|
{% acl_end %}
|
||||||
|
<li><a href="{% url "about" %}">À propos</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="col-sm-3 col-md-3 navbar-right">
|
<div class="col-sm-3 col-md-3 navbar-right">
|
||||||
<form action="{% url "search:search"%}" class="navbar-form" role="search">
|
<form action="{% url "search:search"%}" class="navbar-form" role="search">
|
||||||
|
|
Loading…
Reference in a new issue