diff --git a/views/admin.html b/views/admin.html index 4d02f9a..6fac097 100644 --- a/views/admin.html +++ b/views/admin.html @@ -13,87 +13,85 @@
+
+ +
+
+
+ + Gestion des sections +
+
+ {{ SectionsCount }} +
+
+
+
+
-
- -
-
-
- - Gestion des sections -
-
- {{ SectionsCount }} -
-
-
-
-
+
+ +
+
+
+ + Gestion des listes +
+
+ {{ ListsCount }} +
+
+
+
+
-
- -
-
-
- - Gestion des listes -
-
- {{ ListsCount }} -
-
-
-
-
+
+ +
+
+
+ + Gestion des champs supplémentaires +
+
+ {{ FieldsCount }} +
+
+
+
+
-
- -
-
-
- - Gestion des champs supplémentaires -
-
- {{ FieldsCount }} -
-
-
-
-
- -
- -
-
-
- - Gestion des utilisateurs -
-
- {{ UsersCount }} -
-
-
-
-
- -
- -
-
-
- - Gestion des rôles -
-
- {{ RolesCount }} -
-
-
-
-
+
+ +
+
+
+ + Gestion des utilisateurs +
+
+ {{ UsersCount }} +
+
+
+
+
+
+ +
+
+
+ + Gestion des rôles +
+
+ {{ RolesCount }} +
+
+
+
+
{% endblock %} diff --git a/views/field_form.html b/views/field_form.html index 2a8ba57..ad0f507 100644 --- a/views/field_form.html +++ b/views/field_form.html @@ -36,7 +36,9 @@ {% endif %}
- +
-
-
- Champs supplémentaires -
- -
+
+
+ Champs supplémentaires +
+ +
-
-
Membres
+
+
Membres
- {% for Field in Fields %} - {% if Field.PersonType == "member" %} -
-
+ {% for Field in Fields %} + {% if Field.PersonType == "member" %} +
+
+ -
-
Nom
- -
+
+
Type de champ
+
+ {% for Key, Value in FieldTypes %} + {% if Key == Field.FieldType %} + {{ Value }} + {% endif %} + {% endfor %} +
+
-
-
Type de champ
-
- {% for Key, Value in FieldTypes %} - {% if Key == Field.FieldType %} - - {{ Value }} - - {% endif %} - {% endfor %} -
-
- - +
+ {% endif %} + {% endfor %} +
+
-
-
- {% endif %} - {% endfor %} -
-
- -
-
Sympathisants
+
+
Sympathisants
- {% for Field in Fields %} - {% if Field.PersonType == "contact" %} -
-
+ {% for Field in Fields %} + {% if Field.PersonType == "contact" %} +
+
+ - +
+
Type de champ
+
+ {% for Key, Value in FieldTypes %} + {% if Key == Field.FieldType %} + {{ Value }} + {% endif %} + {% endfor %} +
+
-
-
Type de champ
-
- {% for Key, Value in FieldTypes %} - {% if Key == Field.FieldType %} - - {{ Value }} - - {% endif %} - {% endfor %} -
-
- - - {% endif %} - {% endfor %} -
-
+
+
+
+ {% endif %} + {% endfor %} +
+
{% endblock %} diff --git a/views/index.html b/views/index.html index 0e31ff3..6daa8bc 100644 --- a/views/index.html +++ b/views/index.html @@ -16,51 +16,51 @@
-
-
- - Gestion des membres -
-
- {{ MembersCount }} -
-
+
+
+ + Gestion des membres +
+
+ {{ MembersCount }} +
+
{% endif %} {% if Globals.AllowContactsPage %} -
+
-
-
- - Gestion des sympathisants -
-
- {{ ContactsCount }} -
-
+
+
+ + Gestion des sympathisants +
+
+ {{ ContactsCount }} +
+
{% endif %} {% if Globals.UserIsAdmin %} -
+ diff --git a/views/lists.html b/views/lists.html index 8be34e0..eb2c0ac 100644 --- a/views/lists.html +++ b/views/lists.html @@ -13,44 +13,42 @@
-
-
- Listes -
- -
+
+
+ Listes +
+ +
{% if Lists %} - {% for List in Lists %} -
+ {% for List in Lists %} +
- -
-
Nom
+
+
Nom
-
+ {{ List.Name }} +
+
-
-
Choix multiples
+
+
Choix multiples
- {% if List.Multi %} - Oui - {% else %} - Non - {% endif %} -
-
- -
-
- {% endfor %} + {% if List.Multi %} + Oui + {% else %} + Non + {% endif %} +
+
+ + + {% endfor %} {% else %}
Pas de liste pour le moment
{% endif %} diff --git a/views/people.html b/views/people.html index d31fe1c..54fc81f 100644 --- a/views/people.html +++ b/views/people.html @@ -17,46 +17,46 @@
-
-
- {% if MembersPage %} - Membres - {% else %} - Sympathisants - {% endif %} -
-
- {% if MembersPage %} - - {% else %} - - {% endif %} -
-
+
+
+ {% if MembersPage %} + Membres + {% else %} + Sympathisants + {% endif %} +
+
+ {% if MembersPage %} + + {% else %} + + {% endif %} +
+
diff --git a/views/person.html b/views/person.html index c2b7e7f..99557cf 100644 --- a/views/person.html +++ b/views/person.html @@ -10,7 +10,9 @@ {% if Person.IsMember %} {% else %} - + {% endif %} {% else %} - + {% endif %} {% if Person.ID %} diff --git a/views/role.html b/views/role.html index 020d5c6..b6275fd 100644 --- a/views/role.html +++ b/views/role.html @@ -251,7 +251,9 @@
-
Convertir membres en sympathisants
+
+ Convertir membres en sympathisants +
{% if Role.ConvertMemberToContact %}
@@ -506,7 +508,9 @@
-
Convertir sympathisants en membres
+
+ Convertir sympathisants en membres +
{% if Role.ConvertContactToMember %}
diff --git a/views/roles.html b/views/roles.html index 615faa3..eb8547c 100644 --- a/views/roles.html +++ b/views/roles.html @@ -13,33 +13,31 @@
-
-
- Rôles -
- -
+
+
+ Rôles +
+ +
{% if Roles %} - {% for Role in Roles %} -
+ {% for Role in Roles %} +
- -
-
Nom
+
+
Nom
-
- -
-
- {% endfor %} + {{ Role.Name }} +
+
+
+
+ {% endfor %} {% else %}
Pas de rôle pour le moment
{% endif %} diff --git a/views/section_form.html b/views/section_form.html index 4d34ad3..25d3b39 100644 --- a/views/section_form.html +++ b/views/section_form.html @@ -36,7 +36,9 @@ {% endif %}
- +
-
-
- Sections -
- -
+
+
+ Sections +
+ +
{% if Sections %} - {% for Section in Sections %} -
+ {% for Section in Sections %} +
-
-
Section parente
+
+
Section parente
- {% if Section.ParentSectionID %} - - {{ Section.ParentSection.Name }} - - {% else %} - Pas de section parente - {% endif %} -
-
+ {% if Section.ParentSectionID %} + + {{ Section.ParentSection.Name }} + + {% else %} + Pas de section parente + {% endif %} +
+
-
-
Membres
+
+
Membres
- {% if Section.ContainsMembers %} - Oui - {% else %} - Non - {% endif %} -
-
+ {% if Section.ContainsMembers %} + Oui + {% else %} + Non + {% endif %} +
+
-
-
Sympathisants
+
+
Sympathisants
- {% if Section.ContainsContacts %} - Oui - {% else %} - Non - {% endif %} -
-
- -
-
- {% endfor %} + {% if Section.ContainsContacts %} + Oui + {% else %} + Non + {% endif %} +
+
+
+ + {% endfor %} {% else %}
Pas de section pour le moment
{% endif %} diff --git a/views/users.html b/views/users.html index 3112867..bebf8e0 100644 --- a/views/users.html +++ b/views/users.html @@ -13,51 +13,47 @@
-
-
- Utilisateurs -
-
- - - Ajouter - -
-
+
+
+ Utilisateurs +
+
+ + + Ajouter + +
+
{% if Users %} - {% for User in Users %} -
+ {% for User in Users %} +
- -
-
Nom
+ +
+
-
-
Email
+
+
Email
+
{{ User.Email }}
+
+ +
+
Administrateur
- {{ User.Email }} -
-
- -
-
Administrateur
-
- {% if User.IsAdmin %} - Oui - {% else %} - Non - {% endif %} -
-
- -
-
- {% endfor %} + {% if User.IsAdmin %} + Oui + {% else %} + Non + {% endif %} +
+ + + + {% endfor %} {% else %}
Pas d'utilisateurs pour le moment
{% endif %}