Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions fsm_admin/templates/fsm_admin/fsm_transition_hints.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
<h2>{% trans "Hints in order to..." %}</h2>

{% for action, hints in transition_hints.items %}
{% for hint in hints %}
<div class="form-row">
<div>
{% if forloop.first %}
<label><strong>{{ action }}</strong></label>
{% endif %}
<p>{{ hint }}</p>
</div>
</div>
{% endfor %}
<dl>
<dt>{{ action }}</dt>
{% for hint in hints %}
<dd>{{ hint }}</dd>
{% endfor %}
</dl>
{% endfor %}
</div>
{% endif %}