mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-15 19:09:50 +00:00
22 lines
762 B
Twig
22 lines
762 B
Twig
|
|
<tr data-count="{{ count }}">
|
||
|
|
<td style="width:40px;">
|
||
|
|
<a href="#" class="btn btn-danger btn-sm remove-action"><i class="fa fa-trash"></i></a>
|
||
|
|
</td>
|
||
|
|
<td style="width:30%;">
|
||
|
|
<select name="rule-action[{{ count }}]" class="form-control">
|
||
|
|
{% for key,name in actions %}
|
||
|
|
<option name="{{ key }}" label="{{ name }}">{{ name }}</option>
|
||
|
|
{% endfor %}
|
||
|
|
</select>
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<input type="text" name="rule-action-value[{{ count }}]" class="form-control">
|
||
|
|
</td>
|
||
|
|
<td style="width:20%;">
|
||
|
|
<div class="checkbox">
|
||
|
|
<label>
|
||
|
|
<input type="checkbox" name="rule-action-stop[{{ count }}]" value="1"/>
|
||
|
|
</label>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|