File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ INPUT {
58
58
/* INPUT.ng-invalid.ng-touched { background-color: #FA787E; }
59
59
INPUT.ng-valid.ng-touched { background-color: #78FA89; } */
60
60
61
- UL .index_colloques > LI {
61
+ UL .index_events > LI {
62
62
margin : 20px 10px ;
63
63
}
64
64
Original file line number Diff line number Diff line change 8
8
{% if title %}
9
9
< title > {{ title }} - {{ nom_institution }}</ title >
10
10
{% else %}
11
- < title > {{ nom_institution }} - Inscription à un colloque </ title >
11
+ < title > {{ nom_institution }} - Inscription à un événement </ title >
12
12
{% endif %}
13
13
< link href ="{{ url_for('static', filename='css/bootstrap.min.css') }} " rel ="stylesheet "/>
14
14
{% block CSS %}{% endblock %}
20
20
{% block javascript %}{% endblock %}
21
21
</ head >
22
22
< body >
23
- < div > Colloques
23
+ < div > Évenements
24
24
< a href ="{{ url_for('index') }} "> Accueil</ a >
25
25
</ div >
26
26
< hr >
37
37
< div id ="main ">
38
38
{% if current_user.is_authenticated %}
39
39
< p > Vous êtes < code > {% if g.gecos %}{{ g.gecos }}{% else %}{{ current_user.username }}{% endif %}</ code > < a href ="{{ url_for('auth.logout') }} "> < em > Sortir de l'espace réservé</ em > </ a > </ p >
40
- {% if 1%}< p > < a href ="{{ url_for('suivi_index') }} "> Retour à la liste des colloques </ a > </ p > {% endif %}
40
+ {% if 1%}< p > < a href ="{{ url_for('suivi_index') }} "> Retour à la liste des événements </ a > </ p > {% endif %}
41
41
{% else %}
42
42
< p > < a href ="{{ url_for('auth.login') }} "> Espace réservé</ a > </ p >
43
43
{% endif %}
Original file line number Diff line number Diff line change 8
8
< div class ="entete ">
9
9
< table class ="titre "> < tr >
10
10
< td > < img src ="static/logos/petit-logo.png " /> </ td >
11
- < td > < h1 > Interface d'inscription aux colloques </ h1 > </ td >
11
+ < td > < h1 > Interface d'inscription à des événements </ h1 > </ td >
12
12
</ tr > </ table >
13
13
</ div >
14
14
Original file line number Diff line number Diff line change 27
27
{% from "_formhelpers.html" import render_field with context %}
28
28
< form id ="ncollform " name ="ncollform " method ="post " action ="">
29
29
{{form.hidden_tag()}}
30
- < fieldset > < legend accesskey ="c "> Votre colloque </ legend >
30
+ < fieldset > < legend accesskey ="c "> Votre événement </ legend >
31
31
{{ render_field(form.titre, size=80, maxlength=120) }}
32
32
< div ng-show ="ncollform.$submitted || ncollform.titre.$touched ">
33
33
< span ng-show ="ncollform.titre.$error.required "> Merci d'indiquer le titre de l'événement</ span >
Original file line number Diff line number Diff line change 18
18
< h1 > Liste des formulaires</ h1 >
19
19
20
20
< hr />
21
- < ul class ="index_colloques ">
21
+ < ul class ="index_events ">
22
22
{% for e in evenements %}
23
23
< li > < a href ="{{ url_for('suivi', evt=e.id) }} "> {{ e.titre }} — {{ e.date | datefr }}</ a > — {{ nb_inscrits[e.id] }} inscription{% if nb_inscrits[e.id] > 1 %}s{% endif %}
24
24
{% if e.formulaire %}< ul > {% for f in e.formulaire %}
You can’t perform that action at this time.
0 commit comments