pytask/templates/registration/registration_form.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 18 Jan 2011 14:47:26 +0530
changeset 460 408fb012dbae
parent 319 70726699ca80
child 477 a7ac6cbaca25
permissions -rw-r--r--
Use the defined templatetag on profile registration form too.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
460
408fb012dbae Use the defined templatetag on profile registration form too.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 319
diff changeset
     1
{% extends "base.html" %}
408fb012dbae Use the defined templatetag on profile registration form too.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 319
diff changeset
     2
408fb012dbae Use the defined templatetag on profile registration form too.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 319
diff changeset
     3
{% load form_helpers %}
408fb012dbae Use the defined templatetag on profile registration form too.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 319
diff changeset
     4
258
0e8d0f5474f2 Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
{% block content %}
460
408fb012dbae Use the defined templatetag on profile registration form too.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 319
diff changeset
     6
  {% url registration_register as registration_url %}
408fb012dbae Use the defined templatetag on profile registration form too.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 319
diff changeset
     7
  {% as_div_form form "Create Task Form" csrf_token "Submit" registration_url %}
258
0e8d0f5474f2 Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
{% endblock %}