{% extends 'base.html' %} {% block title %}Schedule Templates - Optinet Global Links{% endblock %} {% block content %}

Schedule Templates

Create and manage reusable schedule templates

{% for template in templates %}
{{ template.name }}
{{ template.get_template_type_display }}

{{ template.description|default:"No description provided" }}

Category: {{ template.get_category_display }}
Duration: {{ template.estimated_duration|default:"Not set" }}
{% if template.is_recurring %} Recurrence: {{ template.get_recurrence_pattern_display }} {% endif %}
Created: {{ template.created_at|date:"M d, Y" }}
Used: {{ template.usage_count }} times
{% empty %}
No schedule templates

Create your first schedule template to streamline recurring tasks.

Create Template
{% endfor %}
{% endblock %}