Commit 29df64f6b620fb3e284c1d80367e2fe5e39544b3
1 parent
abbd44d1
Exists in
master
and in
5 other branches
repared broken links #50
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
app/templates/home.html
... | ... | @@ -87,7 +87,7 @@ |
87 | 87 | <li> <a href="{% url 'users:profile' %}">{% trans 'Profile' %}</a></li> |
88 | 88 | <li> <a href="#">{% trans 'Pending Tasks' %}</a></li> |
89 | 89 | {% if user|has_role:'student' and not user.is_staff %} |
90 | - <li> <a href="#">{% trans 'My courses' %}</a></li> | |
90 | + <li> <a href="{% url 'course:manage' %}">{% trans 'My courses' %}</a></li> | |
91 | 91 | {% endif %} |
92 | 92 | {% if user|has_role:'system_admin' %} |
93 | 93 | <li> <a href="{% url 'users:manage' %}">{% trans 'Manage Users' %}</a></li> | ... | ... |
app/templates/home_student.html
... | ... | @@ -23,7 +23,7 @@ |
23 | 23 | <div class="panel-body"> |
24 | 24 | <ul class="nav nav-pills nav-stacked"> |
25 | 25 | <li><a href="{% url 'users:profile' %}">{% trans 'Profile' %}</a></li> |
26 | - <li><a href="javascript:void(0)">{% trans 'My Courses' %}</a></li> | |
26 | + <li><a href="{% url 'course:manage' %}">{% trans 'My Courses' %}</a></li> | |
27 | 27 | <li><a href="javascript:void(0)">{% trans 'Google accounts' %}</a></li> |
28 | 28 | </ul> |
29 | 29 | </div> | ... | ... |