{% extends 'base.html' %} {% load static %} {% block title %}{{ expense.expense_number }} - Optinet Global Links{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ expense.title }}
Employee: | {{ expense.employee.full_name }} |
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 H:i" }} |
Budget Allocation: | {{ expense.budget_allocation.category.name }} |
Vendor: | {{ expense.vendor_name }} |
Vendor Contact: | {{ expense.vendor_contact }} |
Reimbursable: | {% if expense.is_reimbursable %} Yes {% else %} No {% endif %} |
Status: | {{ expense.get_status_display }} |
{{ expense.description|linebreaks }}
{{ expense.notes|linebreaks }}
{{ expense.rejection_reason|linebreaks }}
by {{ log.performed_by.get_full_name|default:log.performed_by.username }}
{{ log.timestamp|date:"M d, Y H:i" }} {% if log.comments %}{{ log.comments }}
{% endif %}