{% extends "base.html" %} {% load i18n %} {% block title %}{{ _("View Account") }}{% endblock title %} {% block content %}

{{ _("Bank Account Details") }}

{{ _("Account Name") }}: {{ account.name }}

{{ _("Account Code") }}: {{ account.code }}

{{ _("Balance Type") }}: {{ account.balance_type }}

{{ _("Active") }}: {{ account.active }}

{% endblock %}