diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/timetable.html | 2 | ||||
| -rw-r--r-- | templates/timetable_common.html | 3 | 
2 files changed, 3 insertions, 2 deletions
| diff --git a/templates/timetable.html b/templates/timetable.html index 4ab6a1a..e4dffe7 100644 --- a/templates/timetable.html +++ b/templates/timetable.html @@ -15,7 +15,7 @@          {% if is_old_timetable %}          <b><a href="{% url "timetable" group.timetable.year.slug group.timetable.slug group.slug %}">Accéder à l’emploi du temps de cette semaine.</b></a><br />          {% endif %} -        Dernière mise à jour le {{ last_update|date:"l j F o" }} à {{ last_update|date:"H:i" }} +        {% if last_update %}Dernière mise à jour le {{ last_update|date:"l j F o" }} à {{ last_update|date:"H:i" }}{% endif %}        </p>        {% include "timetable_common.html" %}        <p class="subscribe"><a href="{% url "ics" group.timetable.year.slug group.timetable.slug group.slug %}">ICS</a> – <a href="{% url "rss" group.timetable.year.slug group.timetable.slug group.slug %}">RSS</a> – <a href="{% url "atom" group.timetable.year.slug group.timetable.slug group.slug %}">Atom</a></p>{% endblock %} diff --git a/templates/timetable_common.html b/templates/timetable_common.html index 4319e60..9a2c27e 100644 --- a/templates/timetable_common.html +++ b/templates/timetable_common.html @@ -9,4 +9,5 @@              <small>Remarques : {{ course.notes }}</small>{% endif %}            </li>{% endfor %}          </ul> -      </section>{% endfor %} +      </section>{% empty %} +      <p>Aucun cours cette semaine.</p>{% endfor %} | 
