{% extends 'extends/offcanvas.html' %} {% load i18n %} {% load crispy_forms_tags %} {% block title %}{% translate 'Transaction Rule' %}{% endblock %} {% block body %}
{{ transaction_rule.name }}
{{ transaction_rule.description }}

{% translate 'If transaction...' %}
{{ transaction_rule.trigger }}
{% translate 'Then...' %}
{% for action in transaction_rule.transaction_actions.all %}
{% trans 'Edit transaction' %}
{% translate 'Set' %} {{ action.get_field_display }} {% translate 'to' %}
{{ action.value }}
{% endfor %} {% for action in transaction_rule.update_or_create_transaction_actions.all %}
{% trans 'Update or create transaction' %}
{% trans 'Edit to view' %}
{% endfor %} {% if not transaction_rule.update_or_create_transaction_actions.all and not transaction_rule.transaction_actions.all %}
{% translate 'This rule has no actions' %}
{% endif %}
{% endblock %}