diff -r e7b1a685b488 -r 408fb012dbae pytask/templates/registration/registration_form.html --- a/pytask/templates/registration/registration_form.html Tue Jan 18 14:37:54 2011 +0530 +++ b/pytask/templates/registration/registration_form.html Tue Jan 18 14:47:26 2011 +0530 @@ -1,8 +1,8 @@ -{% extends 'base.html' %} +{% extends "base.html" %} + +{% load form_helpers %} + {% block content %} -
-{% csrf_token %} -{{ form.as_p }} - -
+ {% url registration_register as registration_url %} + {% as_div_form form "Create Task Form" csrf_token "Submit" registration_url %} {% endblock %}