diff --git a/templates/_types/calendar/_description.html b/templates/_types/calendar/_description.html deleted file mode 100644 index 0f04f3a..0000000 --- a/templates/_types/calendar/_description.html +++ /dev/null @@ -1,12 +0,0 @@ -{% macro description(calendar, oob=False) %} -
- {{ calendar.description or ''}} -
- -{% endmacro %} \ No newline at end of file diff --git a/templates/_types/calendar/_oob_elements.html b/templates/_types/calendar/_oob_elements.html deleted file mode 100644 index 1447e24..0000000 --- a/templates/_types/calendar/_oob_elements.html +++ /dev/null @@ -1,22 +0,0 @@ -{% extends "oob_elements.html" %} -{# OOB elements for post admin page #} - - - - -{% block oobs %} - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('post-header-child', 'calendar-header-child', '_types/calendar/header/_header.html')}} - - {% from '_types/post/header/_header.html' import header_row with context %} - {{ header_row(oob=True) }} -{% endblock %} - - -{% block mobile_menu %} -{% include '_types/calendar/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/calendar/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/calendar/admin/_nav.html b/templates/_types/calendar/admin/_nav.html deleted file mode 100644 index f5c504d..0000000 --- a/templates/_types/calendar/admin/_nav.html +++ /dev/null @@ -1,2 +0,0 @@ -{% from 'macros/admin_nav.html' import placeholder_nav %} -{{ placeholder_nav() }} diff --git a/templates/_types/calendar/admin/_oob_elements.html b/templates/_types/calendar/admin/_oob_elements.html deleted file mode 100644 index ec6244c..0000000 --- a/templates/_types/calendar/admin/_oob_elements.html +++ /dev/null @@ -1,25 +0,0 @@ -{% extends 'oob_elements.html' %} - -{# OOB elements for calendar admin page #} - -{# Import shared OOB macros #} -{% from '_types/root/header/_oob.html' import root_header_start, root_header_end with context %} -{% from '_types/root/_oob_menu.html' import mobile_menu with context %} - - -{% block oobs %} - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('calendar-header-child', 'calendar-admin-header-child', '_types/calendar/admin/header/_header.html')}} - - {% from '_types/calendar/header/_header.html' import header_row with context %} - {{header_row(oob=True)}} -{% endblock %} - - -{% block mobile_menu %} - {% include '_types/calendar/admin/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/calendar/admin/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/calendar/admin/index.html b/templates/_types/calendar/admin/index.html deleted file mode 100644 index c27d6d2..0000000 --- a/templates/_types/calendar/admin/index.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends '_types/calendar/index.html' %} -{% import 'macros/layout.html' as layout %} - -{% block calendar_header_child %} - {% from '_types/root/_n/macros.html' import header with context %} - {% call header() %} - {% from '_types/calendar/admin/header/_header.html' import header_row with context %} - {{ header_row() }} -
- {% block calendar_admin_header_child %} - {% endblock %} -
- {% endcall %} -{% endblock %} - - - -{% block _main_mobile_menu %} - {% include '_types/calendar/admin/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/calendar/admin/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/calendars/_nav.html b/templates/_types/calendars/_nav.html deleted file mode 100644 index f5c504d..0000000 --- a/templates/_types/calendars/_nav.html +++ /dev/null @@ -1,2 +0,0 @@ -{% from 'macros/admin_nav.html' import placeholder_nav %} -{{ placeholder_nav() }} diff --git a/templates/_types/calendars/_oob_elements.html b/templates/_types/calendars/_oob_elements.html deleted file mode 100644 index 6de3bea..0000000 --- a/templates/_types/calendars/_oob_elements.html +++ /dev/null @@ -1,28 +0,0 @@ -{% extends 'oob_elements.html' %} - -{# OOB elements for HTMX navigation - all elements that need updating #} - -{% from '_types/root/_oob_menu.html' import mobile_menu with context %} - -{# Header with app title - includes cart-mini, navigation, and market-specific header #} - -{% block oobs %} - - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('post-admin-header-child', 'calendars-header-child', '_types/calendars/header/_header.html')}} - - {% from '_types/post/admin/header/_header.html' import header_row with context %} - {{ header_row(oob=True) }} -{% endblock %} - - -{% block mobile_menu %} - {% include '_types/calendars/_nav.html' %} -{% endblock %} - - -{% block content %} - {% include "_types/calendars/_main_panel.html" %} -{% endblock %} - - diff --git a/templates/_types/day/_main_panel.html b/templates/_types/day/_main_panel.html deleted file mode 100644 index 0eea6f0..0000000 --- a/templates/_types/day/_main_panel.html +++ /dev/null @@ -1,28 +0,0 @@ -
- - - - - - - - - - - - - {% for entry in day_entries %} - {% include '_types/day/_row.html' %} - {% else %} - - {% endfor %} - - - -
NameSlot/TimeStateCostTicketsActions
No entries yet.
- -
- {% include '_types/day/_add_button.html' %} -
- -
diff --git a/templates/_types/day/_oob_elements.html b/templates/_types/day/_oob_elements.html deleted file mode 100644 index 812e6b0..0000000 --- a/templates/_types/day/_oob_elements.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "oob_elements.html" %} - -{% block oobs %} - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('calendar-header-child', 'day-header-child', '_types/day/header/_header.html')}} - - {% from '_types/calendar/header/_header.html' import header_row with context %} - {{ header_row(oob=True) }} -{% endblock %} - - -{% block mobile_menu %} - {% include '_types/day/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/day/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/day/admin/_main_panel.html b/templates/_types/day/admin/_main_panel.html deleted file mode 100644 index f5c504d..0000000 --- a/templates/_types/day/admin/_main_panel.html +++ /dev/null @@ -1,2 +0,0 @@ -{% from 'macros/admin_nav.html' import placeholder_nav %} -{{ placeholder_nav() }} diff --git a/templates/_types/day/admin/_nav.html b/templates/_types/day/admin/_nav.html deleted file mode 100644 index f5c504d..0000000 --- a/templates/_types/day/admin/_nav.html +++ /dev/null @@ -1,2 +0,0 @@ -{% from 'macros/admin_nav.html' import placeholder_nav %} -{{ placeholder_nav() }} diff --git a/templates/_types/day/admin/_oob_elements.html b/templates/_types/day/admin/_oob_elements.html deleted file mode 100644 index 20986bf..0000000 --- a/templates/_types/day/admin/_oob_elements.html +++ /dev/null @@ -1,25 +0,0 @@ -{% extends 'oob_elements.html' %} - -{# OOB elements for calendar admin page #} - -{# Import shared OOB macros #} -{% from '_types/root/header/_oob.html' import root_header_start, root_header_end with context %} -{% from '_types/root/_oob_menu.html' import mobile_menu with context %} - - -{% block oobs %} - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('day-header-child', 'day-admin-header-child', '_types/day/admin/header/_header.html')}} - - {% from '_types/calendar/header/_header.html' import header_row with context %} - {{header_row(oob=True)}} -{% endblock %} - - -{% block mobile_menu %} - {% include '_types/day/admin/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/day/admin/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/day/admin/index.html b/templates/_types/day/admin/index.html deleted file mode 100644 index f4f37b5..0000000 --- a/templates/_types/day/admin/index.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends '_types/day/index.html' %} -{% import 'macros/layout.html' as layout %} -{% import 'macros/links.html' as links %} - - -{% block day_header_child %} - {% from '_types/root/_n/macros.html' import header with context %} - {% call header() %} - {% from '_types/day/admin/header/_header.html' import header_row with context %} - {{ header_row() }} -
- {% block day_admin_header_child %} - {% endblock %} -
- {% endcall %} -{% endblock %} - -{% block _main_mobile_menu %} - {% include '_types/day/admin/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/day/admin/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/day/index.html b/templates/_types/day/index.html deleted file mode 100644 index 655ee55..0000000 --- a/templates/_types/day/index.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends '_types/calendar/index.html' %} - -{% block calendar_header_child %} - {% from '_types/root/_n/macros.html' import index_row with context %} - {% call index_row('day-header-child', '_types/day/header/_header.html') %} - {% block day_header_child %} - {% endblock %} - {% endcall %} -{% endblock %} - -{% block _main_mobile_menu %} - {% include '_types/day/_nav.html' %} -{% endblock %} - - -{% block content %} - {% include '_types/day/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/entry/_oob_elements.html b/templates/_types/entry/_oob_elements.html deleted file mode 100644 index 8981fa1..0000000 --- a/templates/_types/entry/_oob_elements.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "oob_elements.html" %} - -{% block oobs %} - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('day-header-child', 'entry-header-child', '_types/entry/header/_header.html')}} - - {% from '_types/day/header/_header.html' import header_row with context %} - {{ header_row(oob=True) }} -{% endblock %} - - -{% block mobile_menu %} - {% include '_types/entry/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/entry/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/entry/_optioned.html b/templates/_types/entry/_optioned.html deleted file mode 100644 index ba23391..0000000 --- a/templates/_types/entry/_optioned.html +++ /dev/null @@ -1,9 +0,0 @@ - -{% include '_types/entry/_options.html' %} -
- {% include '_types/entry/_title.html' %} -
- -
- {% include '_types/entry/_state.html' %} -
\ No newline at end of file diff --git a/templates/_types/entry/_state.html b/templates/_types/entry/_state.html deleted file mode 100644 index b67254a..0000000 --- a/templates/_types/entry/_state.html +++ /dev/null @@ -1,15 +0,0 @@ -{% if entry.state %} - - {{ entry.state|capitalize }} - - {% endif %} \ No newline at end of file diff --git a/templates/_types/entry/_times.html b/templates/_types/entry/_times.html deleted file mode 100644 index 3543fe4..0000000 --- a/templates/_types/entry/_times.html +++ /dev/null @@ -1,5 +0,0 @@ -{% from 'macros/date.html' import t %} -
- {{ t(entry.start_at) }} - {% if entry.end_at %} → {{ t(entry.end_at) }}{% endif %} -
\ No newline at end of file diff --git a/templates/_types/entry/_title.html b/templates/_types/entry/_title.html deleted file mode 100644 index 3c1dc63..0000000 --- a/templates/_types/entry/_title.html +++ /dev/null @@ -1,3 +0,0 @@ - - {{ entry.name }} - {% include '_types/entry/_state.html' %} diff --git a/templates/_types/entry/admin/_main_panel.html b/templates/_types/entry/admin/_main_panel.html deleted file mode 100644 index f5c504d..0000000 --- a/templates/_types/entry/admin/_main_panel.html +++ /dev/null @@ -1,2 +0,0 @@ -{% from 'macros/admin_nav.html' import placeholder_nav %} -{{ placeholder_nav() }} diff --git a/templates/_types/entry/admin/_nav_posts_oob.html b/templates/_types/entry/admin/_nav_posts_oob.html deleted file mode 100644 index e4d62cb..0000000 --- a/templates/_types/entry/admin/_nav_posts_oob.html +++ /dev/null @@ -1,31 +0,0 @@ -{# OOB swap for entry posts nav when posts are associated/disassociated #} -{% import 'macros/links.html' as links %} - -{# Associated Posts - vertical on mobile, horizontal with arrows on desktop #} -{% if entry_posts %} -
- {% from 'macros/scrolling_menu.html' import scrolling_menu with context %} - {% call(entry_post) scrolling_menu('entry-posts-container', entry_posts) %} - - {% if entry_post.feature_image %} - {{ entry_post.title }} - {% else %} -
- {% endif %} -
-
{{ entry_post.title }}
-
-
- {% endcall %} -
-{% else %} - {# Empty placeholder to remove nav posts when all are disassociated #} -
-{% endif %} diff --git a/templates/_types/entry/admin/_oob_elements.html b/templates/_types/entry/admin/_oob_elements.html deleted file mode 100644 index bcf2255..0000000 --- a/templates/_types/entry/admin/_oob_elements.html +++ /dev/null @@ -1,25 +0,0 @@ -{% extends 'oob_elements.html' %} - -{# OOB elements for calendar admin page #} - -{# Import shared OOB macros #} -{% from '_types/root/header/_oob.html' import root_header_start, root_header_end with context %} -{% from '_types/root/_oob_menu.html' import mobile_menu with context %} - - -{% block oobs %} - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('entry-header-child', 'entry-admin-header-child', '_types/entry/admin/header/_header.html')}} - - {% from '_types/entry/header/_header.html' import header_row with context %} - {{header_row(oob=True)}} -{% endblock %} - - -{% block mobile_menu %} - {% include '_types/entry/admin/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/entry/admin/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/entry/admin/index.html b/templates/_types/entry/admin/index.html deleted file mode 100644 index caa100c..0000000 --- a/templates/_types/entry/admin/index.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends '_types/entry/index.html' %} -{% import 'macros/layout.html' as layout %} -{% import 'macros/links.html' as links %} - - -{% block entry_header_child %} - {% from '_types/root/_n/macros.html' import header with context %} - {% call header() %} - {% from '_types/entry/admin/header/_header.html' import header_row with context %} - {{ header_row() }} -
- {% block entry_admin_header_child %} - {% endblock %} -
- {% endcall %} -{% endblock %} - -{% block _main_mobile_menu %} - {% include '_types/entry/admin/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/entry/admin/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/entry/index.html b/templates/_types/entry/index.html deleted file mode 100644 index a980f46..0000000 --- a/templates/_types/entry/index.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends '_types/day/index.html' %} - -{% block day_header_child %} - {% from '_types/root/_n/macros.html' import index_row with context %} - {% call index_row('entry-header-child', '_types/entry/header/_header.html') %} - {% block entry_header_child %} - {% endblock %} - {% endcall %} -{% endblock %} - - -{% block _main_mobile_menu %} - {% include '_types/entry/_nav.html' %} -{% endblock %} - - - -{% block content %} -{% include '_types/entry/_main_panel.html' %} -{% endblock %} \ No newline at end of file diff --git a/templates/_types/post_entries/_nav.html b/templates/_types/post_entries/_nav.html deleted file mode 100644 index f5c504d..0000000 --- a/templates/_types/post_entries/_nav.html +++ /dev/null @@ -1,2 +0,0 @@ -{% from 'macros/admin_nav.html' import placeholder_nav %} -{{ placeholder_nav() }} diff --git a/templates/_types/post_entries/_oob_elements.html b/templates/_types/post_entries/_oob_elements.html deleted file mode 100644 index 3ef5559..0000000 --- a/templates/_types/post_entries/_oob_elements.html +++ /dev/null @@ -1,28 +0,0 @@ -{% extends 'oob_elements.html' %} - -{# OOB elements for HTMX navigation - all elements that need updating #} - -{# Import shared OOB macros #} -{% from '_types/root/_oob_menu.html' import mobile_menu with context %} - - -{% block oobs %} - - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('post-admin-header-child', 'post_entries-header-child', '_types/post_entries/header/_header.html')}} - - {% from '_types/post/admin/header/_header.html' import header_row with context %} - {{ header_row(oob=True) }} -{% endblock %} - - -{% block mobile_menu %} - {% include '_types/post_entries/_nav.html' %} -{% endblock %} - - -{% block content %} - {% include "_types/post_entries/_main_panel.html" %} -{% endblock %} - - diff --git a/templates/_types/post_entries/index.html b/templates/_types/post_entries/index.html deleted file mode 100644 index 382d297..0000000 --- a/templates/_types/post_entries/index.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends '_types/post/admin/index.html' %} - - - -{% block post_admin_header_child %} - {% from '_types/root/_n/macros.html' import index_row with context %} - {% call index_row('post-admin-header-child', '_types/post_entries/header/_header.html') %} - {% block post_entries_header_child %} - {% endblock %} - {% endcall %} -{% endblock %} - -{% block _main_mobile_menu %} - {% include '_types/post_entries/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/post_entries/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/slot/__description.html b/templates/_types/slot/__description.html deleted file mode 100644 index 7897fd2..0000000 --- a/templates/_types/slot/__description.html +++ /dev/null @@ -1,13 +0,0 @@ -{% macro description(slot, oob=False) %} -
- {{ slot.description or ''}} -
- -{% endmacro %} diff --git a/templates/_types/slot/_description.html b/templates/_types/slot/_description.html deleted file mode 100644 index 32e28e6..0000000 --- a/templates/_types/slot/_description.html +++ /dev/null @@ -1,5 +0,0 @@ -

- {% if slot.description %} - {{ slot.description }} - {% endif %} -

diff --git a/templates/_types/slot/_oob_elements.html b/templates/_types/slot/_oob_elements.html deleted file mode 100644 index 3b82170..0000000 --- a/templates/_types/slot/_oob_elements.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "oob_elements.html" %} - -{% block oobs %} - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('slots-header-child', 'slot-header-child', '_types/slot/header/_header.html')}} - - {% from '_types/slots/header/_header.html' import header_row with context %} - {{ header_row(oob=True) }} -{% endblock %} - - - -{% block content %} - {% include '_types/slot/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/slot/index.html b/templates/_types/slot/index.html deleted file mode 100644 index 265be24..0000000 --- a/templates/_types/slot/index.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends '_types/slots/index.html' %} -{% import 'macros/layout.html' as layout %} - - -{% block slots_header_child %} - {% from '_types/root/_n/macros.html' import index_row with context %} - {% call index_row('slot-header-child', '_types/slot/header/_header.html') %} - {% block slot_header_child %} - {% endblock %} - {% endcall %} -{% endblock %} - - -{% block _main_mobile_menu %} - {#% include '_types/slot/_nav.html' %#} -{% endblock %} - -{% block content %} - {% include '_types/slot/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/slots/_main_panel.html b/templates/_types/slots/_main_panel.html deleted file mode 100644 index a2ac263..0000000 --- a/templates/_types/slots/_main_panel.html +++ /dev/null @@ -1,26 +0,0 @@ -
- - - - - - - - - - - - - {% for s in slots %} - {% include '_types/slots/_row.html' %} - {% else %} - - {% endfor %} - -
NameFlexibleDaysTimeCostActions
No slots yet.
- - -
- {% include '_types/slots/_add_button.html' %} -
-
diff --git a/templates/_types/slots/_oob_elements.html b/templates/_types/slots/_oob_elements.html deleted file mode 100644 index acf0d05..0000000 --- a/templates/_types/slots/_oob_elements.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "oob_elements.html" %} - -{% block oobs %} - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('calendar-header-child', 'slots-header-child', '_types/slots/header/_header.html')}} - - {% from '_types/calendar/header/_header.html' import header_row with context %} - {{ header_row(oob=True) }} -{% endblock %} - - - -{% block content %} - {% include '_types/slots/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/slots/index.html b/templates/_types/slots/index.html deleted file mode 100644 index 453ba5f..0000000 --- a/templates/_types/slots/index.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends '_types/calendar/index.html' %} - -{% block calendar_header_child %} - {% from '_types/root/_n/macros.html' import index_row with context %} - {% call index_row('slots-header-child', '_types/slots/header/_header.html') %} - {% block slots_header_child %} - {% endblock %} - {% endcall %} -{% endblock %} - -{% block _main_mobile_menu %} - {#% include '_types/calendar/_nav.html' %#} -{% endblock %} - - - -{% block content %} - {% include '_types/slots/_main_panel.html' %} -{% endblock %} \ No newline at end of file diff --git a/templates/_types/ticket_type/_nav.html b/templates/_types/ticket_type/_nav.html deleted file mode 100644 index f5c504d..0000000 --- a/templates/_types/ticket_type/_nav.html +++ /dev/null @@ -1,2 +0,0 @@ -{% from 'macros/admin_nav.html' import placeholder_nav %} -{{ placeholder_nav() }} diff --git a/templates/_types/ticket_type/_oob_elements.html b/templates/_types/ticket_type/_oob_elements.html deleted file mode 100644 index 824e62a..0000000 --- a/templates/_types/ticket_type/_oob_elements.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "oob_elements.html" %} - -{% block oobs %} - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('ticket_types-header-child', 'ticket_type-header-child', '_types/ticket_type/header/_header.html')}} - - {% from '_types/ticket_types/header/_header.html' import header_row with context %} - {{ header_row(oob=True) }} -{% endblock %} - - -{% block mobile_menu %} - {% include '_types/ticket_type/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/ticket_type/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/ticket_type/index.html b/templates/_types/ticket_type/index.html deleted file mode 100644 index 245992c..0000000 --- a/templates/_types/ticket_type/index.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends '_types/ticket_types/index.html' %} -{% import 'macros/layout.html' as layout %} - -{% block ticket_types_header_child %} - {% from '_types/root/_n/macros.html' import index_row with context %} - {% call index_row('ticket_types-header-child', '_types/ticket_type/header/_header.html') %} - {% block ticket_type_header_child %} - {% endblock %} - {% endcall %} -{% endblock %} - - -{% block _main_mobile_menu %} - {#% include '_types/ticket_type/_nav.html' %#} -{% endblock %} - -{% block content %} - {% include '_types/ticket_type/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/ticket_types/_main_panel.html b/templates/_types/ticket_types/_main_panel.html deleted file mode 100644 index 2afaa7a..0000000 --- a/templates/_types/ticket_types/_main_panel.html +++ /dev/null @@ -1,24 +0,0 @@ -
- - - - - - - - - - - {% for tt in ticket_types %} - {% include '_types/ticket_types/_row.html' %} - {% else %} - - {% endfor %} - -
NameCostCountActions
No ticket types yet.
- - -
- {% include '_types/ticket_types/_add_button.html' %} -
-
diff --git a/templates/_types/ticket_types/_nav.html b/templates/_types/ticket_types/_nav.html deleted file mode 100644 index f5c504d..0000000 --- a/templates/_types/ticket_types/_nav.html +++ /dev/null @@ -1,2 +0,0 @@ -{% from 'macros/admin_nav.html' import placeholder_nav %} -{{ placeholder_nav() }} diff --git a/templates/_types/ticket_types/_oob_elements.html b/templates/_types/ticket_types/_oob_elements.html deleted file mode 100644 index a746f17..0000000 --- a/templates/_types/ticket_types/_oob_elements.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "oob_elements.html" %} - -{% block oobs %} - {% from '_types/root/_n/macros.html' import oob_header with context %} - {{oob_header('entry-admin-header-child', 'ticket_types-header-child', '_types/ticket_types/header/_header.html')}} - - {% from '_types/entry/admin/header/_header.html' import header_row with context %} - {{ header_row(oob=True) }} -{% endblock %} - - -{% block mobile_menu %} - {% include '_types/ticket_types/_nav.html' %} -{% endblock %} - -{% block content %} - {% include '_types/ticket_types/_main_panel.html' %} -{% endblock %} diff --git a/templates/_types/ticket_types/index.html b/templates/_types/ticket_types/index.html deleted file mode 100644 index 9d0362a..0000000 --- a/templates/_types/ticket_types/index.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends '_types/entry/admin/index.html' %} - -{% block entry_admin_header_child %} - {% from '_types/root/_n/macros.html' import index_row with context %} - {% call index_row('ticket_type-header-child', '_types/ticket_types/header/_header.html') %} - {% block ticket_types_header_child %} - {% endblock %} - {% endcall %} -{% endblock %} - - -{% block _main_mobile_menu %} - {% include '_types/ticket_types/_nav.html' %} -{% endblock %} - - - -{% block content %} - {% include '_types/ticket_types/_main_panel.html' %} -{% endblock %}