pytask/templates/task/create.html
author nishanth
Sat, 30 Jan 2010 13:04:58 +0530
changeset 12 c823b42970a4
parent 11 d28fcc644fbb
permissions -rw-r--r--
added events/task.py and templates/error.html

{% extends 'base.html' %}
{% block content %}
    {% if error_msg %}
    {{ error_msg }}<br />
    {% endif %}
    <form action="" method="post">
    {{form.as_p}}
    <input type="submit" value="Submit">
    </form>
{% endblock %}