{% extends "admin/base.html" %} {% block stylesheets %} {% endblock %} {% block content %}

Reset

{% with form = Forms.config.ResetInstanceForm() %}

{{ form.accounts(class="form-check-input", autocomplete="off") }} {{ form.accounts.label(class="form-check-label") }}
Deletes all user and team accounts and their associated information
(Users, Teams, Submissions, Tracking)
{{ form.submissions(class="form-check-input", autocomplete="off") }} {{ form.submissions.label(class="form-check-label") }}
Deletes all records that accounts gained points or took an action
(Submissions, Awards, Unlocks, Tracking)
{{ form.challenges(class="form-check-input", autocomplete="off") }} {{ form.challenges.label(class="form-check-label") }}
Deletes all challenges and associated data
(Challenges, Flags, Hints, Tags, Challenge Files)
{{ form.pages(class="form-check-input", autocomplete="off") }} {{ form.pages.label(class="form-check-label") }}
Deletes all pages and their associated files
(Pages, Page Files)
{{ form.notifications(class="form-check-input", autocomplete="off") }} {{ form.notifications.label(class="form-check-label") }}
Deletes all notifications
(Notifications)

{{ form.nonce() }} {{ form.submit(class="btn btn-warning btn-lg btn-block") }}
{% endwith %}
{% endblock %} {% block scripts %} {% endblock %} {% block entrypoint %} {{ Assets.js("assets/js/pages/reset.js", theme="admin") }} {% endblock %}