mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Add reverse button
This commit is contained in:
@@ -701,6 +701,7 @@ return [
|
||||
'yearly' => 'yearly',
|
||||
|
||||
// rules
|
||||
'is_not_rule_trigger' => 'Not',
|
||||
'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.',
|
||||
'rules' => 'Rules',
|
||||
'rule_name' => 'Name of rule',
|
||||
|
||||
@@ -13,6 +13,15 @@
|
||||
{% endfor %}
|
||||
</select>
|
||||
</td>
|
||||
<td style="width:40px;">
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
<input type="checkbox" name="triggers[{{ count }}][prohibited]" value="1"
|
||||
{% if oldProhibited %}checked{% endif %}
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<input autocomplete="off" type="text" value="{{ oldValue }}" name="triggers[{{ count }}][value]"
|
||||
class="form-control">
|
||||
|
||||
@@ -51,6 +51,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2">{{ 'trigger'|_ }}</th>
|
||||
<th>{{ 'is_not_rule_trigger'|_ }}</th>
|
||||
<th>{{ 'trigger_value'|_ }}</th>
|
||||
<th>{{ 'stop_processing_other_triggers'|_ }}</th>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user