Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. def formation(request):
  2. list_formations = Formation.objects.all()
  3. t = loader.get_template('catalogue/index.html')
  4. c = Context({
  5. 'list_formations': list_formations,
  6. })
  7. return HttpResponse(t.render(c))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement