{% extends 'admin_pages/base_admin.html' %} {% block title %}{{ title }}{% endblock %} {% block content %} {% include 'includes/print_header.html' %}

{{ title }}

Back
{% if expense.description %} {% endif %} {% if expense.remarks %} {% endif %}
Expense ID {{ expense.id }}
Category {{ expense.expense_category }}
Spent By {{ expense.spent_by }}
Approved By {{ expense.approved_by }}
Amount AFN {{ expense.amount|floatformat:2 }}
Currency {{ expense.currency }}
From Account {{ expense.get_from_account_display }}
Date {{ expense.date }}
Description {{ expense.description }}
Remarks {{ expense.remarks }}

Printed At: {{ now|date:"Y-m-d H:i" }}

Printed By: {{ request.user.get_full_name|default:request.user.username }}

Authorized Signature:

{% endblock %}