From 9f3ad0be16d556a36ac48ffbd461a31873c78055 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Fri, 2 Dec 2022 04:02:38 -0700 Subject: Don't allow file uploads bigger than 10MB --- templates/forms/_field.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates') 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 }} - {% if field.field.widget.input_type == "file" and field.value%} + {% if field.field.widget.input_type == "file" and field.value %} {% endif %} -- cgit v1.2.3