{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% block view_content %}
{% include 'django_ledger/journal_entry/includes/card_journal_entry.html' with journal_entry=journal_entry %}
{% csrf_token %}
{{ txs_formset.non_form_errors }} {{ txs_formset.management_form }}
{% 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 }} {{ f.tx_type }} {{ f.amount }} {{ f.description }} {% if txs_formset.can_delete %} {{ f.DELETE }} {% 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 %}