19 lines
487 B
HTML
19 lines
487 B
HTML
{% extends 'generic_help.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block help_title %}
|
|
{% trans "What are folders?" %}
|
|
{% endblock %}
|
|
|
|
{% block help_text %}
|
|
<p>
|
|
{% blocktrans %}
|
|
These folders can also be described as user folders. They are a way to
|
|
let individual users create their own document organization methods.
|
|
Folders created by one user and the documents contained by them don't
|
|
affect any other user folders or documents.
|
|
{% endblocktrans %}
|
|
</p>
|
|
{% endblock %}
|