{% extends "base.html" %} {% load i18n static %} {% block title %}{{ _("Journal Entries") }}{% endblock title %} {% block content %}

{% trans "Journal Entries" %}

{% trans "Add Journal Entry" %}
{% for je in journal_entries %} {% empty %} {% endfor %}
{% trans "Document Number" %} {% trans "Timestamp" %} {% trans "Activity" %} {% trans "Description" %} {% trans "Posted" %} {% trans "Locked" %} {% trans "Transaction Count" %} {% trans "Action" %}
{{ je.je_number }} {{ je.timestamp }} {% if je.get_activity_display %} {{ je.get_activity_display }} {% endif %} {{ je.description }} {% if je.is_posted %} {% else %} {% endif %} {% if je.is_locked %} {% else %} {% endif %} {{ je.txs_count }}
{% trans "No Bank Accounts Found" %}
{% endblock %}