diff options
author | Parth Buch | 2011-07-20 17:40:07 +0530 |
---|---|---|
committer | Parth Buch | 2011-07-20 17:40:07 +0530 |
commit | 03774090683a7488872b73c902930b5d04df89ca (patch) | |
tree | ec92f54e1c34412e318c02dcd08c20ec20db5359 | |
parent | 03ba2d5fe196924a1b4fc5128c2062fccbd9fec9 (diff) | |
download | pytask-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.html | 2 |
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 %} |