change loop values to be more robust to the number of images
This commit is contained in:
parent
4407202e4b
commit
42cdc91d98
|
@ -56,9 +56,9 @@
|
|||
</div>
|
||||
</div>
|
||||
<table class="GpQGbf">
|
||||
{% for i in range(length // 4) %}
|
||||
{% for i in range((length // 4) + 1) %}
|
||||
<tr>
|
||||
{% for j in range(4) %}
|
||||
{% for j in range([length - (i*4), 4]|min) %}
|
||||
<td align="center" class="e3goi">
|
||||
<div class="svla5d">
|
||||
<div>
|
||||
|
|
Loading…
Reference in New Issue
Block a user