Skip to content

Commit bf63137

Browse files
author
Odile
committed
Poursuite de la dépersonnalisation (événements plusôt que colloques).
1 parent 4a564ac commit bf63137

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

soco/static/css/soco.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ INPUT {
5858
/* INPUT.ng-invalid.ng-touched { background-color: #FA787E; }
5959
INPUT.ng-valid.ng-touched { background-color: #78FA89; } */
6060

61-
UL.index_colloques > LI {
61+
UL.index_events > LI {
6262
margin: 20px 10px;
6363
}
6464

soco/templates/base.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{% if title %}
99
<title>{{ title }} - {{ nom_institution }}</title>
1010
{% else %}
11-
<title>{{ nom_institution }} - Inscription à un colloque</title>
11+
<title>{{ nom_institution }} - Inscription à un événement</title>
1212
{% endif %}
1313
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet"/>
1414
{% block CSS %}{% endblock %}
@@ -20,7 +20,7 @@
2020
{% block javascript %}{% endblock %}
2121
</head>
2222
<body>
23-
<div>Colloques
23+
<div>Évenements
2424
<a href="{{ url_for('index') }}">Accueil</a>
2525
</div>
2626
<hr>
@@ -37,7 +37,7 @@
3737
<div id="main">
3838
{% if current_user.is_authenticated %}
3939
<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 %}
4141
{% else %}
4242
<p><a href="{{ url_for('auth.login') }}">Espace réservé</a></p>
4343
{% endif %}

soco/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<div class="entete">
99
<table class="titre"><tr>
1010
<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>
1212
</tr></table>
1313
</div>
1414

soco/templates/new.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
{% from "_formhelpers.html" import render_field with context %}
2828
<form id="ncollform" name="ncollform" method="post" action="">
2929
{{form.hidden_tag()}}
30-
<fieldset><legend accesskey="c">Votre colloque</legend>
30+
<fieldset><legend accesskey="c">Votre événement</legend>
3131
{{ render_field(form.titre, size=80, maxlength=120) }}
3232
<div ng-show="ncollform.$submitted || ncollform.titre.$touched">
3333
<span ng-show="ncollform.titre.$error.required">Merci d'indiquer le titre de l'événement</span>

soco/templates/suivi_index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<h1>Liste des formulaires</h1>
1919

2020
<hr/>
21-
<ul class="index_colloques">
21+
<ul class="index_events">
2222
{% for e in evenements %}
2323
<li><a href="{{ url_for('suivi', evt=e.id) }}">{{ e.titre }} &mdash; {{ e.date | datefr }}</a> &mdash; {{ nb_inscrits[e.id] }} inscription{% if nb_inscrits[e.id] > 1 %}s{% endif %}
2424
{% if e.formulaire %}<ul>{% for f in e.formulaire %}

0 commit comments

Comments
 (0)