{% extends "base.html" %} {% block content %}
{% with staff_nav_active="site_settings" %} {% include "partials/staff_sidebar.html" %} {% endwith %}
{% with breadcrumbs=[ {"name": "Staff", "href": "/staff"}, {"name": "Site Settings"} ] %} {% include "partials/breadcrumbs.html" %} {% endwith %}

Site Settings

Manage site-wide configuration.

{% with staff_site_settings_tab_active="site_settings" %} {% include "partials/staff_site_settings_tabs.html" %} {% endwith %} {% if notice %}
{{ notice }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
When disabled, the signup page will show an error and the API create-user endpoint will reject non-staff requests.
When enabled, non-staff signups must use an active invite link created from the staff invites screen.
How old a user account must be before the user can create signup invites. Does not apply to staff.
Maximum number of signup invites a user may create per 24 hours.
When set to "Anyone", users can create invites from their profile, subject to account age and daily limits.
Last updated {{ settings.updated_at | timeago }}
{% endblock %} {% block scripts %} {% endblock %}