2024-01-08 21:02:27 +00:00
{% extends "base.html" %}
{% block title %}Admin panel{% endblock %}
{% block main %}
< main class = "container" >
2024-03-02 16:06:00 +00:00
< script src = "/res/scripts/adminManager.js" > < / script >
2024-01-08 21:02:27 +00:00
< header >
< picture >
< source srcset = "/res/furizon.png" media = "(prefers-color-scheme:dark)" >
< img src = "/res/furizon-light.png" style = "height:4rem;text-align:center;" >
< / picture >
< / header >
<!-- Quick controls -->
2024-02-29 10:41:49 +00:00
< h2 > Admin panel< / h2 >
2024-05-14 16:03:19 +00:00
< p > Data< / p >
2024-02-29 10:41:49 +00:00
< a href = "/manage/admin/cache/clear" role = "button" title = "Reload the orders' data and the re-sync items' indexes from pretix" > Clear cache< / a >
2024-05-14 16:03:19 +00:00
< a download href = "/manage/admin/export/export" role = "button" title = "Will export most of informations about the orders" > Export CSV< / a >
< a download href = "/manage/admin/export/hotel" role = "button" title = "Will export a CSV for the hotel accomodation" > Export hotel CSV< / a >
< hr >
< p > Rooms< / p >
2024-02-29 10:41:49 +00:00
< a href = "/manage/nosecount" role = "button" title = "Shortcut to the nosecount's admin data" > Manage rooms< / a >
2024-01-21 23:35:44 +00:00
< a href = "/manage/admin/room/verify" role = "button" title = "Will unconfirm rooms that fail the default check. Useful when editing answers from Pretix" > Verify Rooms< / a >
2024-05-19 19:07:31 +00:00
< a href = "/manage/admin/room/wizard" role = "button" title = "Auto fill unconfirmed rooms. You can review and edit matches before confirming." > Fill Rooms< / a >
2024-05-14 16:03:19 +00:00
< hr >
< p > Profiles< / p >
2024-05-19 19:07:31 +00:00
< a href = "#" onclick = "confirmAction('propicReminder', this)" role = "button" title = "Will email all people who haven't uploaded a badge, yet" action = "/manage/admin/propic/remind" > Remind badge upload< / a >
2024-05-13 10:01:47 +00:00
< a href = "/manage/admin/room/autoconfirm" role = "button" title = "Will confirm all the full rooms that are still unconfirmed" > Auto-confirm Rooms< / a >
2024-05-14 16:03:19 +00:00
< hr >
2024-03-02 16:06:00 +00:00
{% include 'components/confirm_action_modal.html' %}
2024-01-08 21:02:27 +00:00
< / main >
{% endblock %}