{% extends 'base.html' %} {% load static %} {% block title %} Edit Employee {% endblock %} {% block heading %} EDIT EMPLOYEE DETAILS {% endblock %} {% block content %}
{% csrf_token %}
Employee ID
Name
Email
Company
Designation
Joining Date
Job Location
Employment Setup
Gender
Marital Status
User Type
Weekend Day
Leave Category
Single Day Entitlement
Annual Entitlement
Manager ID
Manager Name
Manager Email
Date of Leaving
Employee Status
Back

{{ save_message }}

{% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{ form.errors|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}
{% endblock %}