{% 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 all_actions %} {% if action.action_type == "edit_transaction" %}
{% if action.order != 0 %}{{ action.order }}{% endif %} {% trans 'Edit transaction' %}
{% translate 'Set' %} {{ action.get_field_display }} {% translate 'to' %}
{{ action.value }}
{% elif action.action_type == "update_or_create_transaction" %}
{% if action.order != 0 %}{{ action.order }}{% endif %} {% trans 'Update or create transaction' %}
{% trans 'Edit to view' %}
{% endif %} {% empty %}
{% translate 'This rule has no actions' %}
{% endfor %}
{% endblock %}