diff --git a/biscuit/apps/alsijil/templates/alsijil/group_week.html b/biscuit/apps/alsijil/templates/alsijil/group_week.html index 05eb45b9d4697dfbfe966498abbbda88c84f15f6..f052b1ddcd4605991fb3147803e583b8c0edfb7c 100644 --- a/biscuit/apps/alsijil/templates/alsijil/group_week.html +++ b/biscuit/apps/alsijil/templates/alsijil/group_week.html @@ -32,7 +32,11 @@ {% for period in periods %} <tr> <td>{{ period.period.period }}</td> - <td>{{ period.lesson.subject.name }}</td> + <td> + <a href="{% url 'lesson_by_week_and_period' week period.id %}"> + {{ period.lesson.subject.name }} + </a> + </td> <td>{{ period.lesson.teachers|join:', ' }}</td> </tr> {% endfor %}