issue #2227 like for date_posted, display all presets for date_created

This commit is contained in:
plegall
2024-09-20 14:21:28 +02:00
parent 49b2ab3855
commit a3e9ed23ce
9 changed files with 18 additions and 17 deletions
@@ -381,12 +381,12 @@ const prefix_icon = 'gallery-icon-';
<div class="date_created-option-container">
<div class="preset_created_date">
{foreach from=$DATE_CREATED item=date_created key=k}
<div class="date_created-option">
<input type="radio" id="date_created-{$k}" value={$k} name="date_created-period">
<div class="date_created-option {if 0 == $date_created.counter}disabled{/if}">
{if 0 != $date_created.counter}<input type="radio" id="date_created-{$k}" value={$k} name="date_created-period">{/if}
<label for="date_created-{$k}" id="{$k}">
<span class="mcs-icon gallery-icon-checkmark checked-icon"></span>
<span class="date-period">{$date_created.label}</span>
<span class="date_created-badge">{$date_created.counter}</span>
{if 0 != $date_created.counter}<span class="date_created-badge">{$date_created.counter}</span>{/if}
</label>
</div>
{/foreach}