Skip to content

Commit 7e4481d

Browse files
committed
Hide download ZIP file button if no files are present
1 parent 0f904d5 commit 7e4481d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

wagtailstreamforms/templates/streamforms/index_submissions.html

+2
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,11 @@ <h1 class="icon icon-form">
8989
<div class="col">
9090
<button name="action" value="CSV" class="button bicolor icon icon-download">{% trans 'Download CSV' %}</button>
9191
</div>
92+
{% if contains_files %}
9293
<div class="col">
9394
<button name="action" value="ZIP" class="button bicolor icon icon-download">{% trans 'Download ZIP' %}</button>
9495
</div>
96+
{% endif %}
9597
</div>
9698
</div>
9799
</form>

wagtailstreamforms/views/submission_list.py

+1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ def get_context_data(self, **kwargs):
128128
"has_delete_permission": self.permission_helper.user_can_delete_obj(
129129
self.request.user, self.object
130130
),
131+
"contains_files": FormSubmissionFile.objects.filter(submission__form=self.object).count() > 0
131132
}
132133
)
133134

0 commit comments

Comments
 (0)