{% extends "admin/layout.html" %} {% set active_menu_item = ['about', 'system'] %} {% block title %}{% trans "About The System" %}{% endblock %} {% block contents %}

{% trans "About The System" %}

{% trans "Hosting Environment" %}

TextPress Version
{{ textpress.version|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 }}

{% trans "URL Endpoints" %}

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

{% trans "Services" %}

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

{% trans "Installed APIs" %}

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

{% trans "Plugins" %}

{% trans "Configuration Variables" %}

{%- for item in configuration %} {%- endfor %}
{% trans "Key" %} {% trans "Value" %} {% trans "Default" %}
{{ item.key|e }} {{ item.value|pprint|e }} {{ item.default|pprint|e }}
{% endblock %}