16 lines
285 B
HTML
16 lines
285 B
HTML
{% extends 'generic_help.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block help_title %}
|
|
{% trans "What are indexes?" %}
|
|
{% endblock %}
|
|
|
|
{% block help_text %}
|
|
<p>
|
|
{% blocktrans %}
|
|
Indexes group documents into a tree like hierarchical structure.
|
|
{% endblocktrans %}
|
|
</p>
|
|
{% endblock %}
|