{% load django_ledger %} {% load i18n %}
{% trans 'Journal Entry Detail' %}

{{ journal_entry.je_number }}

{% if journal_entry.entity_unit %}

{{ journal_entry.entity_unit.name }}

{% endif %}

{% trans 'Date' %}: {{ journal_entry.timestamp | date }}

{% trans 'Posted' %}: {% if journal_entry.is_posted %} {% icon 'ant-design:check-circle-filled' 24 %} {% else %} {% icon 'maki:roadblock-11' 24 %} {% endif %}

{% trans 'Locked' %}: {% if journal_entry.is_locked %} {% icon 'ant-design:check-circle-filled' 24 %} {% else %} {% icon 'maki:roadblock-11' 24 %} {% endif %}

{% if journal_entry.activity %}

{% trans 'Activity' %}: {{ journal_entry.get_activity_display }}

{% endif %} {% if journal_entry.description %}

{{ journal_entry.description }}

{% endif %}