{# {% extends 'creme_core/base.html' %} #} {% extends BASE_HTML %} {% load i18n creme_bricks creme_widgets %} {% load has_perm_to from creme_core_tags %} {% block page_title %}{% translate 'Configuration' %} - {% endblock %} {% block content_extra_class %}content-config-portal{% endblock %} {% block content %}
{% block logo %}{% widget_icon name='config' size='brick-hat-bar' label=_('Configuration') %}{% endblock %}

{% block title %}{% translate 'Creme configuration portal' %}{% endblock %}

{% block portal_bricks %}
{% brick_header_title title=_('General') icon='config' %}
{% translate 'Instance settings' %} {% translate 'Some global settings, like menu icon' %}
{% translate 'Relationship types settings' %} {% translate 'See existing Relationship types, create customised ones' %}
{% translate 'Property types settings' %} {% translate 'See existing Property types, create new ones' %}
{% translate 'Fields settings' %} {% translate 'Hide or mark as required the existing fields of entities' %}
{% translate 'Custom fields settings' %} {% translate 'Add new fields to entities' %}
{% translate 'Custom forms settings' %} {% translate 'Customise the forms (which fields, their order…) of entities' %}
{% translate 'Blocks settings' %} {% translate "Customise the blocks' locations on detailed views, homes & default «My page»" %}
{% translate 'Menu settings' %} {% translate 'Customise the entries of the main menu' %}
{% translate 'Button menu settings' %} {% translate 'Customise the buttons of detailed views' %}
{% translate 'Search settings' %} {% translate 'Set the fields which are inspected by the global search' %}
{% translate 'History settings' %} {% translate 'Set the Relationship types used to generate related history lines' %}
{% brick_header_title title=_('Credentials management') icon='config' %}
{% translate 'Users settings' %}
{% translate 'Roles and credentials settings' %}
{% brick_header_title title=_('List-views management') icon='config' %}
{% translate 'Filters settings' %} {% translate 'Customise the filters which control the entities displayed in the list-views' %}
{% translate 'Views settings' %} {% translate 'Customise the views which indicate the columns displayed in the list-views' %}
{% brick_declare app_bricks %} {% brick_display app_bricks %}
{% brick_header_title title=_('Applications portals') icon='config' %}
{% if app_configs %} {% for app_conf in app_configs %} {% has_perm_to admin app_conf.name as app_admin_perm %} {% endfor %} {% else %} {% endif %}
{% if app_admin_perm %} {% blocktranslate with app_name=app_conf.verbose_name %}{{app_name}} configuration portal{% endblocktranslate %} {% else %} {% blocktranslate with app_name=app_conf.verbose_name %}{{app_name}} configuration portal{% endblocktranslate %} {% endif %}
{% translate 'No application requires configuration' %}
{% endblock %} {% brick_end %} {% endblock %}