{% extends "core/base.html" %} {% load static %} {% block title %}Log Expense - SwiftPOS{% endblock %} {% block topbar_title %}Log Operating Expense{% endblock %} {% block content %}

Record Expense

Log a new operating expense for the company.
Back
{% csrf_token %}
{% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}

Cancel
{% endblock %}