Commit e175a38faae3d96fec85851abafabf461aaeb56b
1 parent
3e1022ac
Exists in
master
and in
5 other branches
Fixed page's title [Issue:#416]
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
core/views.py
@@ -112,6 +112,7 @@ class GuestView (ListView): | @@ -112,6 +112,7 @@ class GuestView (ListView): | ||
112 | def get_context_data (self, **kwargs): | 112 | def get_context_data (self, **kwargs): |
113 | context = super(GuestView, self).get_context_data(**kwargs) | 113 | context = super(GuestView, self).get_context_data(**kwargs) |
114 | context['categorys_courses'] = CourseCategory.objects.all() | 114 | context['categorys_courses'] = CourseCategory.objects.all() |
115 | + context['title'] = _("Guest") | ||
115 | return context | 116 | return context |
116 | 117 | ||
117 | 118 |