diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.html | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/templates/index.html b/templates/index.html index 812a991..a89ab68 100644 --- a/templates/index.html +++ b/templates/index.html @@ -24,7 +24,7 @@ a:hover, a:focus {      text-decoration: underline;  } -h1 a, h3 a { +h1 a, h3 a, a.text {      color: #31363b;  } @@ -61,7 +61,7 @@ li.course {        <section id="{{ timetable.slug }}">          <h3><a href="{{ timetable.url }}">{{ timetable.name }}</a></h3>          <ul>{% for group in groups %}{% if group.timetable.id == timetable.id %} -          <li>{{ group.name }} – {% for week in group.weeks %}<a href="{% url "timetable" group.slug week.year week|dt_week %}">{{ week|dt_prettyprint }}</a> {% endfor %}</li>{% endif %}{% endfor %} +          <li><a class="text" href="{% url "timetable" group.slug %}">{{ group.name }}</a> – {% for week in group.weeks %}<a href="{% url "timetable" group.slug week.year week|dt_week %}">{{ week|dt_prettyprint }}</a> {% endfor %}</li>{% endif %}{% endfor %}          </ul>        </section>{% endfor %}{% endblock %}      </div> | 
