pytask/templates/task/create.html
author nishanth
Sat, 30 Jan 2010 13:10:11 +0530
changeset 13 4da58abdf6ff
parent 11 d28fcc644fbb
permissions -rw-r--r--
renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.

{% 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 %}