{% extends "dashboard_base.html" %} {% block title %}Event Types — calrs{% endblock %} {% block dashboard_content %}

Event types

+ New
{% if has_any %} {% for et in all_event_types %}
{{ et.title }} {% if et.is_team %}{{ et.team_name }}{% endif %} {% if not et.enabled %}disabled{% endif %} {% if et.visibility == "internal" %}internal{% endif %} {% if et.visibility == "private" %}private{% endif %} {% if et.visibility == "private" or et.visibility == "internal" %} Send invites → {% endif %}
{{ et.duration_min }}min {% if et.is_team %} · {% if et.scheduling_mode == "collective" %}collective{% else %}round robin{% endif %}{% endif %} · /{% if et.is_team %}team/{{ et.team_slug }}{% else %}u/{{ username }}{% endif %}/{{ et.slug }}
{% if et.can_manage %} Edit
{% endif %}
{% if et.can_manage %} Overrides {% endif %} {% if et.is_team and et.can_manage %} Team settings {% endif %} {% if (et.visibility == "private" or et.visibility == "internal") and et.can_manage %} Invites {% endif %} {% if et.view_url %} View public page {% endif %} {% if et.can_manage and et.active_bookings == 0 %}
{% endif %}
{% endfor %} {% else %}
📅
No event types yet. Create one to start accepting bookings.
{% endif %}
{% endblock %}