Commit e175a38faae3d96fec85851abafabf461aaeb56b

Authored by Gustavo Bernardo
1 parent 3e1022ac

Fixed page's title [Issue:#416]

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
@@ -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