Update move page twig syntax (broken page)
This commit is contained in:
parent
f9e8390451
commit
e92fc0ab2c
|
@ -22,7 +22,7 @@
|
||||||
<th>{% trans 'Target board' %}</th>
|
<th>{% trans 'Target board' %}</th>
|
||||||
<td>
|
<td>
|
||||||
<ul style="list-style:none;padding:0">
|
<ul style="list-style:none;padding:0">
|
||||||
{% for targetboard in boards if targetboard.uri != board %}
|
{% for targetboard in boards|filter(b => b.uri != board.uri) %}
|
||||||
<li>
|
<li>
|
||||||
<input type="radio" name="board" value="{{ targetboard.uri }}" id="ban-board-{{ targetboard.uri }}" {% if boards|count == 2 %}checked{% endif %}>
|
<input type="radio" name="board" value="{{ targetboard.uri }}" id="ban-board-{{ targetboard.uri }}" {% if boards|count == 2 %}checked{% endif %}>
|
||||||
<label style="display:inline" for="ban-board-{{ targetboard.uri }}">
|
<label style="display:inline" for="ban-board-{{ targetboard.uri }}">
|
||||||
|
|
Loading…
Reference in New Issue