pytask/templates/profile/edit.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 04 Feb 2011 16:38:21 +0530
changeset 558 fd3e6f5f01bd
parent 480 d0325456f266
permissions -rw-r--r--
Use the form helpers templatetag module in the addreviewer template.

{% extends "base.html" %}

{% load form_helpers %}

{% block js %}
<script type="text/javascript">
  $(document).ready(function () {
    $("#id_dob").datepicker({
      dateFormat: 'yy-mm-dd',
      changeMonth: true,
      changeYear: true,
      minDate: "-90y",
      maxDate: "+0D",
      yearRange: "-90",
      defaultDate: '1985-01-01'
    });
  });
</script>
{% endblock %}


{% block content %}
  {% as_div_form form "Edit Profile Form" csrf_token "Update" %}
{% endblock %}