mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
add condition about date outside of li tags
This commit is contained in:
parent
31fcfed2f5
commit
8542832ac6
@ -32,21 +32,21 @@
|
|||||||
{{'No dates specified'|trans}}
|
{{'No dates specified'|trans}}
|
||||||
{% else %}
|
{% else %}
|
||||||
<ul class="record_actions_column">
|
<ul class="record_actions_column">
|
||||||
<li>
|
{% if task.startDate is not null %}
|
||||||
{% if task.startDate is not null %}
|
<li>
|
||||||
{{'Start'|trans}} :{{ task.startDate|localizeddate('medium', 'none') }}
|
{{'Start'|trans}} :{{ task.startDate|localizeddate('medium', 'none') }}
|
||||||
{% endif %}
|
</li>
|
||||||
</li>
|
{% endif %}
|
||||||
<li>
|
{% if task.warningDate is not null %}
|
||||||
{% if task.warningDate is not null %}
|
<li>
|
||||||
{{'Warning'|trans}} :{{ task.warningDate|localizeddate('medium', 'none') }}
|
{{'Warning'|trans}} :{{ task.warningDate|localizeddate('medium', 'none') }}
|
||||||
{% endif %}
|
</li>
|
||||||
</li>
|
{% endif %}
|
||||||
<li>
|
{% if task.endDate is not null %}
|
||||||
{% if task.endDate is not null %}
|
<li>
|
||||||
{{'End'|trans}} :{{ task.endDate|localizeddate('medium', 'none') }}
|
{{'End'|trans}} :{{ task.endDate|localizeddate('medium', 'none') }}
|
||||||
{% endif %}
|
</li>
|
||||||
</li>
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user