{% extends 'base.html' %} {% load static %} {% block title %}Approve Expense - {{ expense.expense_number }} - Optinet Global Links{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ expense.expense_number }} - {{ expense.title }}
Employee: | {{ expense.employee.full_name }} |
Department: | {{ expense.employee.department.name|default:"Not Assigned" }} |
Category: | {{ expense.category.name }} |
Amount: | KSh {{ expense.amount|floatformat:2 }} |
Expense Date: | {{ expense.expense_date|date:"F d, Y" }} |
Submitted: | {{ expense.submitted_at|date:"F d, Y g:i A" }} |
Vendor: | {{ expense.vendor_name }} |
Vendor Contact: | {{ expense.vendor_contact }} |
Reimbursable: | {% if expense.is_reimbursable %} Yes {% else %} No {% endif %} |
{{ expense.description|linebreaks }}
{{ expense.notes|linebreaks }}