Skip to content

Commit

Permalink
Fix: Add missing endfor in template
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Jan 11, 2022
1 parent 5703847 commit 47e413b
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ <h4 class="card-header{% if "Error" in task.message %} bg-danger{% elif "OK" in
<div class="card-footer">
<ul class="list-inline">
{% for key in node.modifiers %}
<li class="list-inline-item"><kbd>{{ key }}</kbd>
{% if key == "Wait" %}{{ task.autmation.paused_until }}{% endif %}
</li>
<li class="list-inline-item"><kbd>{{ key }}</kbd>
{% if key == "Wait" %}{{ task.autmation.paused_until }}{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% endif %}
Expand Down

0 comments on commit 47e413b

Please sign in to comment.