{% load i18n %}

{% blocktranslate count template_count=template_dirs|length %}Template path{% plural %}Template paths{% endblocktranslate %}

{% if template_dirs %}
    {% for template in template_dirs %}
  1. {{ template }}
  2. {% endfor %}
{% else %}

{% translate "None" %}

{% endif %}

{% blocktranslate count template_count=templates|length %}Template{% plural %}Templates{% endblocktranslate %}

{% if templates %}
{% for template in templates %}
{{ template.template.name|addslashes }}
{{ template.template.origin_name|addslashes }}
{% if template.context %}
{% translate "Toggle context" %} {{ template.context }}
{% endif %} {% endfor %}
{% else %}

{% translate "None" %}

{% endif %}

{% blocktranslate count context_processors_count=context_processors|length %}Context processor{% plural %}Context processors{% endblocktranslate %}

{% if context_processors %}
{% for key, value in context_processors.items %}
{{ key|escape }}
{% translate "Toggle context" %} {{ value|escape }}
{% endfor %}
{% else %}

{% translate "None" %}

{% endif %}