mirror of https://git.48k.eu/ogcp
templates: fix no image message in manage cache view
The template conditional must show the table when form.images has more than zero elements.master
parent
e91fc78a6d
commit
a8af19fa23
|
@ -20,7 +20,7 @@
|
|||
|
||||
<p>{{ _('Select the images to be deleted:') }}</p>
|
||||
|
||||
{% if form.images|length > 1 %}
|
||||
{% if form.images|length > 0 %}
|
||||
<form class="form-inline" method="POST" id="cacheForm">
|
||||
<table class="table table-hover">
|
||||
<thead class="thead-light">
|
||||
|
|
Loading…
Reference in New Issue