Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def registration(request):
- return render(request, 'polls/registration.html')
- def post_new(request):
- form = UserForm()
- data = {
- 'form': form
- }
- return render(request, 'polls/registration.html', data)
Advertisement
Add Comment
Please, Sign In to add comment