{% if not export %}{% extends "admin/layout.html" %}{% endif -%} {% block title %}{{ _("About The System") }}{% endblock %} {%- block contents %}

{{ _("About The System") }}

{{ _('Zine Environment') }}

{{ _('Zine Version') }}
{{ zine_version|e }}
{{ _('Distribution Mode') }}
{{ zine_env.MODE }}
{{ _('Package Location') }}
{{ zine_env.PACKAGE_LOCATION|e }}
{{ _('Shared Data') }}
{{ zine_env.SHARED_DATA|e }}
{{ _('Builtin Templates') }}
{{ zine_env.BUILTIN_TEMPLATE_PATH|e }}
{{ _('Builtin Plugins') }}
{{ zine_env.BUILTIN_PLUGIN_FOLDER|e }}
{{ _('Builtin Translations') }}
{{ zine_env.LOCALE_PATH|e }}
{{ _('Path to Instance') }}
{{ instance_path|e }}
{{ _('Database URI') }}
{{ database_uri|e }}

{{ _("Hosting Environment") }}

{{ _('Python Version') }}
{{ python_version }}
{{ _('Platform') }}
{{ platform|e }}
{{ _('Persistent Environment') }}
{{ _('yes') if hosting_env.persistent else _('no') }}
{{ _('Multithreaded') }}
{%- if hosting_env.multithreaded -%} {% trans count=hosting_env.thread_count %}yes ({{ count }} active threads){% endtrans %} {%- else -%} {{ _("no") }} {%- endif -%}
{{ _('Multiprocess') }}
{{ _('yes') if hosting_env.multiprocess else _('no') }}
{{ _('WSGI Version') }}
{{ hosting_env.wsgi_version|e }}

{{ _("URL Endpoints") }}

{% trans %} The following endpoints are registered on this instance: {% endtrans %}

{{ _("Absolute URL Handlers") }}

{% trans %} The following absolute URL handlers are registered on this instance: {% endtrans %}

{{ _("View Handlers") }}

{% trans %} The following view handlers for endpoints are registered on this instance: {% endtrans %}

{{ _("Content Types") }}

{% trans %} The following content types are registered on this instance: {% endtrans %}

{{ _("Privileges") }}

{% trans %} The following privileges are known to the system: {% endtrans %}

{{ _("Services") }}

{% trans %} The following servicepoints are registered on this instance to be callable via one of the available services. {% endtrans %}

{{ _("Installed APIs") }}

{% trans %} The following APIs are installed on this blog instance. APIs marked with a star (*) are preferred. {% endtrans %}

{{ _("Markup Extensions") }}

{% trans %} The following markup extensions are registered on this instance: {% endtrans %}

{{ _("Parsers") }}

{% trans %} The following parsers are currently installed: {% endtrans %}

{{ _("Plugins") }}

{{ _("Configuration Variables") }}

{%- for item in configuration %} {%- endfor %}
{{ _("Key") }} {{ _("Value") }} {{ _("Default") }}
{{ item.key|e }} {{ item.value|e }} {{ item.default|e }}

{{ _("Template Globals") }}

{{ _("Template Filters") }}

{%- if not export %}
{% trans %} You can export this list and share it for troubleshooting by clicking on the button below. The resulting file is stripped of confidential information such as passwords. {% endtrans %}
{%- endif %} {% endblock -%}