summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParth Buch2011-07-20 17:40:07 +0530
committerParth Buch2011-07-20 17:40:07 +0530
commit03774090683a7488872b73c902930b5d04df89ca (patch)
treeec92f54e1c34412e318c02dcd08c20ec20db5359
parent03ba2d5fe196924a1b4fc5128c2062fccbd9fec9 (diff)
downloadpytask-03774090683a7488872b73c902930b5d04df89ca.tar.gz
pytask-03774090683a7488872b73c902930b5d04df89ca.tar.bz2
pytask-03774090683a7488872b73c902930b5d04df89ca.zip
fixed a minor typing error which made the form not display when file_support is True
-rw-r--r--pytask/templates/templatetags/_as_div_form.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pytask/templates/templatetags/_as_div_form.html b/pytask/templates/templatetags/_as_div_form.html
index 15e9a33..6e0a9a2 100644
--- a/pytask/templates/templatetags/_as_div_form.html
+++ b/pytask/templates/templatetags/_as_div_form.html
@@ -22,7 +22,7 @@ along with PyTask. If not, see <http://www.gnu.org/licenses/>.
<form action="{{ action_url }}" method="post"
{% if file_support %}
- enctype="multipart/form-data"
+ enctype="multipart/form-data" >
{% else %}
>
{% endif %}