{% extends 'base.html' %} {% load bootstrap3 %} {% block content %}

Manage Expense

{% include 'includes/expense_detail_panel.html' %} {% if expense.approved != None %}
This expense has already been approved/rejected.
Economy Team notes for this expense:
{{ expense.notes }}
{% else %}
{% csrf_token %} {% bootstrap_form form %} {% bootstrap_button " Approve Expense" button_type="submit" button_class="btn-success" name="approve" %} {% bootstrap_button " Reject Expense" button_type="submit" button_class="btn-danger" name="reject" %} Cancel
{% endif %} {% endblock content %}