{% extends 'base.html' %} {% load i18n %} {% load static %} {% load crispy_forms_tags %} {% block content %}
{% include 'ledger/journal_entry/includes/card_journal_entry.html' with journal_entry=journal_entry %}
{% csrf_token %}
{% if txs_formset.non_form_errors %} {% endif %} {{ txs_formset.management_form|crispy }}
{% if txs_formset.can_delete %}{% endif %} {% for f in txs_formset %} {% endfor %}
Account TX Type Amount DescriptionDelete
{% for hidden_field in f.hidden_fields %}{{ hidden_field }}{% endfor %} {{ f.account|as_crispy_field }} {{ f.tx_type|as_crispy_field }} {{ f.amount|as_crispy_field }} {{ f.description|as_crispy_field }} {% if txs_formset.can_delete %}{{ f.DELETE|as_crispy_field }}{% endif %}
{% trans 'Done' %} {% if journal_entry.can_lock %} {% trans 'Lock' %} {% endif %} {% if journal_entry.can_unlock %} {% trans 'UnLock' %} {% endif %} {% if journal_entry.can_post %} {% trans 'Post' %} {% endif %} {% if journal_entry.can_unpost %} {% trans 'UnPost' %} {% endif %}
{% endblock %}