{% load i18n %} {% load django_ledger %}
{% trans 'Document Number' %} | {% trans 'Timestamp' %} | {% trans 'Activity' %} | {% trans 'Description' %} | {% trans 'Posted' %} | {% trans 'Locked' %} | {% trans 'Unit' %} | {% trans 'Txs Count' %} | {% trans 'Actions' %} |
---|---|---|---|---|---|---|---|---|
{{ journal_entry_model.je_number }} | {{ journal_entry_model.timestamp }} | {% if journal_entry_model.activity %}{{ journal_entry_model.get_activity_display }}{% endif %} | {% if journal_entry_model.description %}{{ journal_entry_model.description }}{% endif %} | {% if journal_entry_model.is_posted %} {% icon 'ant-design:check-circle-filled' 24 %} {% else %} {% icon 'maki:roadblock-11' 24 %} {% endif %} | {% if journal_entry_model.is_locked %} {% icon 'bi:lock-fill' 24 %} {% else %} {% icon 'bx:bx-lock-open-alt' 24 %} {% endif %} | {{ journal_entry_model.get_entity_unit_name }} | {{ journal_entry_model.txs_count }} |
|