{% extends 'base.html' %} {% block title %}{% if template %}Edit{% else %}Create{% endif %} Schedule Template - Optinet Global Links{% endblock %} {% block content %}

{% if template %}Edit Schedule Template{% else %}Create Schedule Template{% endif %}

{% csrf_token %}
Basic Information

{{ form.name }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{{ form.template_type }}
{{ form.description }}
{{ form.category }}
{{ form.priority }}
Duration Settings

{{ form.estimated_duration_hours }}
{{ form.estimated_duration_minutes }}
{{ form.default_location }}
Recurrence Settings

{{ form.is_recurring }}
{{ form.recurrence_pattern }}
{{ form.recurrence_interval }}
Assignment Settings

{{ form.default_assigned_to }}
{{ form.default_assigned_employee }}
Reminder Settings

{{ form.reminder_before_hours }}
{{ form.reminder_before_minutes }}
{{ form.requires_customer_confirmation }}
{{ form.special_instructions }}
Back to Templates
{% endblock %}