Guest User

Untitled

a guest
Feb 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class MyView(TemplateView):
  2.  
  3. template_name = 'index.html'
  4.  
  5. def get_context_data(self, **kwargs):
  6.  
  7. context = super(MyView, self).get_context_data(**kwargs)
  8. context['data'] = 2
  9.  
  10. return context
Add Comment
Please, Sign In to add comment