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

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

{% if journal_entry.unit %}

{% trans 'Unit' %}: {{ journal_entry.get_entity_unit_name }}

{% endif %}

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

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

{{ journal_entry.description }}