{% extends 'base.html' %} {% load static %} {% block title %}Add Bonus - HR - Optinet Global Links{% endblock %} {% block content %}

Add Employee Bonus

Back to Bonuses
{% csrf_token %}
{{ form.employee }} {% if form.employee.errors %}
{{ form.employee.errors.0 }}
{% endif %}
{{ form.bonus_type }} {% if form.bonus_type.errors %}
{{ form.bonus_type.errors.0 }}
{% endif %}
{{ form.reason }} {% if form.reason.errors %}
{{ form.reason.errors.0 }}
{% endif %}
{{ form.amount }} {% if form.amount.errors %}
{{ form.amount.errors.0 }}
{% endif %}
{{ form.date_earned }} {% if form.date_earned.errors %}
{{ form.date_earned.errors.0 }}
{% endif %}
{{ form.is_recurring }} {% if form.is_recurring.errors %}
{{ form.is_recurring.errors.0 }}
{% endif %}
{{ form.is_active }} {% if form.is_active.errors %}
{{ form.is_active.errors.0 }}
{% endif %}
Cancel
{% include 'hr/hr_nav.html' %} {% endblock %}