Commit aa4808b67020af931321aa8ee666566271c3feba

Authored by Gustavo
1 parent 5ac413d7

Bug fix'd

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
news/views.py
... ... @@ -43,7 +43,7 @@ class ListNewsView(LoginRequiredMixin,LogMixin,generic.ListView):
43 43 return news
44 44  
45 45 def get_context_data(self, **kwargs):
46   - context = super(ListNewsViewNews, self).get_context_data(**kwargs)
  46 + context = super(ListNewsView, self).get_context_data(**kwargs)
47 47 context['title'] = _('Manage News')
48 48  
49 49 return context
... ...