{% extends "layout_fluid.html" %} {% load breadcrumb %} {% load i18n %} {% block title %}{% trans "Administration" %}{% endblock %} {% block h1 %}{% trans "Administration" %}{% endblock %} {% block page_id %}Administration{% endblock %} {% block js %} {% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% include "administration/sidebar.html" %}

{% blocktrans with uuid=dashboard_uuid %} Dashboard UUID {{ uuid }} {% endblocktrans %}

{% trans "General configuration" %}

{% csrf_token %} {% include "_form.html" with form=general_form %}

{% trans "Storage Service options" %}

{% include "_form.html" with form=storage_form %}

{% trans "Checksum algorithm" %}

{% include "_form.html" with form=checksum_form %}

{% trans "Elasticsearch Indexing" %}

  • {% if search_transfers_enabled %} {% trans "Transfers related indexes enabled." %} {% else %} {% trans "Transfers related indexes disabled." %} {% endif %}
  • {% if search_aips_enabled %} {% trans "AIPs related indexes enabled." %} {% else %} {% trans "AIPs related indexes disabled." %} {% endif %}
{% endblock %}