{% extends "base.html" %} {% block content %}

{% if form.instance.pk %} Edit Event {% else %} Add New Event {% endif %}

{% csrf_token %}
{{ form.title }}
{{ form.event_type }}
{{ form.start_date }}
{{ form.end_date }}
{{ form.location }}
{{ form.organizer }}
{{ form.description }}
{{ form.department }}
{{ form.is_active }}
Cancel
{% endblock %}