{% extends 'base.html' %} {% load static %} {% block title %} {% if form.instance.pk %}Edit Budget Allocation{% else %}Create Budget Allocation{% endif %} - Optinet Global Links {% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% if form.instance.pk %}Edit Budget Allocation{% else %}Create Budget Allocation{% endif %}

Back to Allocations
Budget Allocation Information

Budget allocations allow you to pre-approve spending limits for employees in specific categories. This helps control expenses and provides employees with clear spending guidelines.

Allocation Details
{% csrf_token %}
{{ form.employee }} {% if form.employee.errors %}
{{ form.employee.errors.0 }}
{% endif %}
{{ form.category }} {% if form.category.errors %}
{{ form.category.errors.0 }}
{% endif %}
{{ form.allocated_amount }} {% if form.allocated_amount.errors %}
{{ form.allocated_amount.errors.0 }}
{% endif %}
{{ form.allocation_period }} {% if form.allocation_period.errors %}
{{ form.allocation_period.errors.0 }}
{% endif %}
{{ form.start_date }} {% if form.start_date.errors %}
{{ form.start_date.errors.0 }}
{% endif %}
{{ form.end_date }} {% if form.end_date.errors %}
{{ form.end_date.errors.0 }}
{% endif %}
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors.0 }}
{% endif %} Optional notes about this budget allocation
Cancel
{% endblock %} {% block extra_js %} {% endblock %}