summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorAndrew Godwin2022-12-02 04:02:38 -0700
committerAndrew Godwin2022-12-02 04:02:38 -0700
commit9f3ad0be16d556a36ac48ffbd461a31873c78055 (patch)
treee890d0546cd7f3f982b884572dbd88be3bbc9df7 /templates
parent630c9df113a82d57325083057ca913b478aa1eb6 (diff)
downloadtakahe-9f3ad0be16d556a36ac48ffbd461a31873c78055.tar.gz
takahe-9f3ad0be16d556a36ac48ffbd461a31873c78055.tar.bz2
takahe-9f3ad0be16d556a36ac48ffbd461a31873c78055.zip
Don't allow file uploads bigger than 10MB
Diffstat (limited to 'templates')
-rw-r--r--templates/forms/_field.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/forms/_field.html b/templates/forms/_field.html
index 41f59d8..d101889 100644
--- a/templates/forms/_field.html
+++ b/templates/forms/_field.html
@@ -17,7 +17,7 @@
{% endif %}
{{ field }}
</div>
- {% if field.field.widget.input_type == "file" and field.value%}
+ {% if field.field.widget.input_type == "file" and field.value %}
<img class="preview" src="{{ field.value }}">
{% endif %}
</div>