{% extends "backend/base.html" %} {% load i18n %} {% load form_field %} {% load avatar %} {% load waffle_tags %} {% block content %} {% partialdef content inline %}

{% translate "Configuration" %}

{% blocktranslate %}

Use the below options to configure your TeamForge instance. Options marked as required will need to be set in order for TeamForge to function properly.

You can also use this form to enable or disable certain pieces of functionality for your users.

{% endblocktranslate %} {% if form.errors %}
{% translate "Error" %}
{% translate "Please correct the errors below before saving again." %}
{% endif %}
{% csrf_token %}

{% translate "General configuration" %}

{% form_field form.club_name %} {% form_field form.club_location %} {% form_field form.club_logo %}

{% translate "Module configuration" %}

{% translate "Teams" %} {% form_field form.enable_teams show_label=False show_as_toggle=True %} {% switch "TF_TEAMS" %}
{% translate "Enabled" %}
{% else %}
{% translate "Disabled" %}
{% endswitch %}
{% translate "Activities" %} {% form_field form.enable_activities show_label=False show_as_toggle=True %} {% switch "TF_ACTIVITIES" %}
{% translate "Enabled" %}
{% else %}
{% translate "Disabled" %}
{% endswitch %}
{% endpartialdef content %} {% endblock content %}