pytask/templates/task/submit_report.html
author Nishanth Amuluru <nishanth@fossee.in>
Wed, 12 Jan 2011 00:19:22 +0530
changeset 148 026f2059a97a
parent 145 4252da60a4ef
permissions -rw-r--r--
fixed a few broken links to templates

{% extends 'base.html' %}
{% block title %}
    {{task.title}}
{% endblock %}
{% block content %}
Submit a report: <br />
<form action='' method=post enctype="multipart/form-data">
	{% csrf_token %}
{{ form.as_p }}
<input type=submit value=submit />
</form>
{% endblock %}