diff --git a/logs/views.py b/logs/views.py
index 6ab48706..5dd87eaa 100644
--- a/logs/views.py
+++ b/logs/views.py
@@ -90,7 +90,8 @@ from topologie.models import (
Room,
Stack,
ModelSwitch,
- ConstructorSwitch
+ ConstructorSwitch,
+ AccessPoint
)
from preferences.models import GeneralOption
from re2o.views import form
@@ -360,6 +361,7 @@ def stats_models(request):
},
'Topologie': {
'switch': [Switch.PRETTY_NAME, Switch.objects.count()],
+ 'bornes': [AccessPoint.PRETTY_NAME, AccessPoint.objects.count()],
'port': [Port.PRETTY_NAME, Port.objects.count()],
'chambre': [Room.PRETTY_NAME, Room.objects.count()],
'stack': [Stack.PRETTY_NAME, Stack.objects.count()],
diff --git a/machines/templates/machines/aff_extension.html b/machines/templates/machines/aff_extension.html
index 0da5a08e..1feec748 100644
--- a/machines/templates/machines/aff_extension.html
+++ b/machines/templates/machines/aff_extension.html
@@ -24,6 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% load acl %}
+
@@ -38,7 +39,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% for extension in extension_list %}
-
+
{{ extension.name }} |
{{ extension.need_infra }} |
{{ extension.soa}} |
@@ -55,4 +56,4 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
-
+
diff --git a/machines/templates/machines/aff_iptype.html b/machines/templates/machines/aff_iptype.html
index c5ed4c10..1a76e303 100644
--- a/machines/templates/machines/aff_iptype.html
+++ b/machines/templates/machines/aff_iptype.html
@@ -23,15 +23,14 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endcomment %}
{% load acl %}
-
+
Type d'ip |
Extension |
Nécessite l'autorisation infra |
- Début |
- Fin |
+ Plage ipv4 |
Préfixe v6 |
Sur vlan |
Ouverture ports par défault |
@@ -44,8 +43,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{{ type.type }} |
{{ type.extension }} |
{{ type.need_infra }} |
- {{ type.domaine_ip_start }} |
- {{ type.domaine_ip_stop }} |
+ {{ type.domaine_ip_start }}-{{ type.domaine_ip_stop }} |
{{ type.prefix_v6 }} |
{{ type.vlan }} |
{{ type.ouverture_ports }} |
@@ -58,4 +56,4 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
-
+
diff --git a/machines/templates/machines/aff_vlan.html b/machines/templates/machines/aff_vlan.html
index deb8cb11..2e3d99b4 100644
--- a/machines/templates/machines/aff_vlan.html
+++ b/machines/templates/machines/aff_vlan.html
@@ -24,6 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% load acl %}
+
@@ -49,4 +50,4 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
-
+
diff --git a/re2o/utils.py b/re2o/utils.py
index 32be2432..aaefca8d 100644
--- a/re2o/utils.py
+++ b/re2o/utils.py
@@ -190,6 +190,10 @@ class SortTable:
'white_end': ['date_end'],
'default': ['-date_end']
}
+ USERS_INDEX_SCHOOL = {
+ 'school_name': ['name'],
+ 'default': ['name']
+ }
MACHINES_INDEX = {
'machine_name': ['name'],
'default': ['pk']
diff --git a/topologie/models.py b/topologie/models.py
index 22c0192d..ba40626f 100644
--- a/topologie/models.py
+++ b/topologie/models.py
@@ -47,7 +47,7 @@ from django.db import IntegrityError
from django.db import transaction
from reversion import revisions as reversion
-from machines.models import Machine, Interface
+from machines.models import Machine, Interface, regen
class Stack(models.Model):
"""Un objet stack. Regrouppe des switchs en foreign key
diff --git a/users/templates/users/aff_schools.html b/users/templates/users/aff_schools.html
index 64d92cd1..260c7ef3 100644
--- a/users/templates/users/aff_schools.html
+++ b/users/templates/users/aff_schools.html
@@ -22,10 +22,18 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
{% endcomment %}
{% load acl %}
+
+
+
+{% if school_list.paginator %}
+{% include "pagination.html" with list=school_list %}
+{% endif %}
+
+
- Etablissement |
+ {% include "buttons/sort.html" with prefix='school' col='name' text='Etablissement' %} |
|
@@ -42,3 +50,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
+{% if school_list.paginator %}
+{% include "pagination.html" with list=school_list %}
+{% endif %}
+
+
diff --git a/users/templates/users/index_schools.html b/users/templates/users/index_schools.html
index 93bb0737..0912ffd5 100644
--- a/users/templates/users/index_schools.html
+++ b/users/templates/users/index_schools.html
@@ -35,6 +35,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
Ajouter un établissement
{% acl_end %}
Supprimer un ou plusieurs établissements
+
{% include "users/aff_schools.html" with school_list=school_list %}
diff --git a/users/views.py b/users/views.py
index a0d46fe8..e1bf5985 100644
--- a/users/views.py
+++ b/users/views.py
@@ -747,6 +747,23 @@ def index_white(request):
def index_school(request):
""" Affiche l'ensemble des établissement"""
school_list = School.objects.order_by('name')
+ pagination_number = GeneralOption.get_cached_value('pagination_number')
+ school_list = SortTable.sort(
+ school_list,
+ request.GET.get('col'),
+ request.GET.get('order'),
+ SortTable.USERS_INDEX_SCHOOL
+ )
+ paginator = Paginator(school_list, pagination_number)
+ page = request.GET.get('page')
+ try:
+ school_list = paginator.page(page)
+ except PageNotAnInteger:
+ # If page isn't an integer, deliver first page
+ school_list = paginator.page(1)
+ except EmptyPage:
+ # If page is out of range (e.g. 9999), deliver last page of results.
+ school_list = paginator.page(paginator.num_pages)
return render(
request,
'users/index_schools.html',