diff -r a93eebabfeb1 -r 0fb64b24a1c9 templates/user/register.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/user/register.html Thu Feb 04 22:14:34 2010 +0530 @@ -0,0 +1,17 @@ +{% extends 'base.html' %} +{% block content %} +
+ {{ form.as_p }} + +{% if errors %} +

+ Please correct the error{{ errors|pluralize }} below. + {% for i in errors %} +
{{ i }} + {% endfor %} +

+{% endif %} + + +
+{% endblock %}