diff --git a/mayan/apps/common/templates/generic_help.html b/mayan/apps/common/templates/generic_help.html new file mode 100644 index 0000000000..99c250a2c4 --- /dev/null +++ b/mayan/apps/common/templates/generic_help.html @@ -0,0 +1,6 @@ +{% load i18n %} + +
{% blocktrans %}These are the file formats supported by the currently selected converter backend. In this case: '{{ backend }}'{% endblocktrans %}
-+ {% blocktrans %} + These are the file formats supported by the currently selected + converter backend. In this case: '{{ backend }}' + {% endblocktrans %} +
+{% endblock %} diff --git a/mayan/apps/document_indexing/templates/indexing_help.html b/mayan/apps/document_indexing/templates/indexing_help.html index dbf37e5f5b..4dc09b2dd0 100644 --- a/mayan/apps/document_indexing/templates/indexing_help.html +++ b/mayan/apps/document_indexing/templates/indexing_help.html @@ -1,5 +1,15 @@ +{% extends 'generic_help.html' %} + {% load i18n %} -{% blocktrans %}Indexes group documents into a tree like hierarchical structure.{% endblocktrans %}
-+ {% blocktrans %} + Indexes group documents into a tree like hierarchical structure. + {% endblocktrans %} +
+{% endblock %} diff --git a/mayan/apps/documents/templates/document_types_help.html b/mayan/apps/documents/templates/document_types_help.html index a2a06063bf..d705bf29c3 100644 --- a/mayan/apps/documents/templates/document_types_help.html +++ b/mayan/apps/documents/templates/document_types_help.html @@ -1,5 +1,19 @@ +{% extends 'generic_help.html' %} + {% load i18n %} -{% blocktrans %}Document types define a class that represents a broard group of documents, such as: invoices, regulations or manuals. The advantage of using document types are: assigning a list of typical filenames for quick renaming during creation, as well as assigning default metadata types and sets to it.{% endblocktrans %}
-+ {% blocktrans %} + Document types define a class that represents a broard group of documents, + such as: invoices, regulations or manuals. The advantage of using + document types are: assigning a list of typical filenames for quick + renaming during creation, as well as assigning default metadata types + and sets to it. + {% endblocktrans %} +
+{% endblock %} diff --git a/mayan/apps/documents/templates/recent_document_list_help.html b/mayan/apps/documents/templates/recent_document_list_help.html index 2d57a99486..8f6ea6e5b1 100644 --- a/mayan/apps/documents/templates/recent_document_list_help.html +++ b/mayan/apps/documents/templates/recent_document_list_help.html @@ -1,5 +1,16 @@ +{% extends 'generic_help.html' %} + {% load i18n %} -{% blocktrans %}Here you will find the latest {{ recent_count }} documents you have either created or edited in any way.{% endblocktrans %}
-+ {% blocktrans %} + Here you will find the latest {{ recent_count }} documents you have either + created or edited in any way. + {% endblocktrans %} +
+{% endblock %} diff --git a/mayan/apps/dynamic_search/templates/search_help.html b/mayan/apps/dynamic_search/templates/search_help.html index a8bfff941a..35406faf28 100644 --- a/mayan/apps/dynamic_search/templates/search_help.html +++ b/mayan/apps/dynamic_search/templates/search_help.html @@ -1,5 +1,16 @@ +{% extends 'generic_help.html' %} + {% load i18n %} -{% blocktrans %}Enter the desired search keywords separated by space. Only the top {{ search_results_limit }} results will be available.{% endblocktrans %}
-+ {% blocktrans %} + Enter the desired search keywords separated by space. Only the top + {{ search_results_limit }} results will be available. + {% endblocktrans %} +
+{% endblock %} diff --git a/mayan/apps/folders/templates/folders_help.html b/mayan/apps/folders/templates/folders_help.html index e243050e03..d876df9798 100644 --- a/mayan/apps/folders/templates/folders_help.html +++ b/mayan/apps/folders/templates/folders_help.html @@ -1,5 +1,18 @@ +{% extends 'generic_help.html' %} + {% load i18n %} -{% 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 %}
-+ {% 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 %} +
+{% endblock %} diff --git a/mayan/apps/linking/templates/smart_links_help.html b/mayan/apps/linking/templates/smart_links_help.html index 8a23361a9b..da6abfc51a 100644 --- a/mayan/apps/linking/templates/smart_links_help.html +++ b/mayan/apps/linking/templates/smart_links_help.html @@ -1,5 +1,19 @@ +{% extends 'generic_help.html' %} + {% load i18n %} -{% blocktrans %}Smart links are a set of conditional statements that are used to query the database using the current document the user is accessing as the data source, the results of these queries are a list of documents that relate in some manner to the document being displayed and allow users the ability to jump to and from linked documents very easily.{% endblocktrans %}
-+ {% blocktrans %} + Smart links are a set of conditional statements that are used to query the + database using the current document the user is accessing as the data + source, the results of these queries are a list of documents that relate in + some manner to the document being displayed and allow users the ability to + jump to and from linked documents very easily. + {% endblocktrans %} +
+{% endblock %} diff --git a/mayan/apps/metadata/templates/metadata_set_help.html b/mayan/apps/metadata/templates/metadata_set_help.html index 1d34edefc2..3d317995cb 100644 --- a/mayan/apps/metadata/templates/metadata_set_help.html +++ b/mayan/apps/metadata/templates/metadata_set_help.html @@ -1,5 +1,17 @@ +{% extends 'generic_help.html' %} + {% load i18n %} -{% blocktrans %}A metadata set is a group of one or more metadata types. Metadata sets are useful when creating new documents; selecing a metadata set automatically attaches it's member metadata types to said document.{% endblocktrans %}
-+{% blocktrans %} +A metadata set is a group of one or more metadata types. Metadata sets +are useful when creating new documents; selecing a metadata set +automatically attaches it's member metadata types to said document. +{% endblocktrans %} +
+{% endblock %} diff --git a/mayan/apps/metadata/templates/metadata_type_help.html b/mayan/apps/metadata/templates/metadata_type_help.html index 71e3a8ff42..c26580e098 100644 --- a/mayan/apps/metadata/templates/metadata_type_help.html +++ b/mayan/apps/metadata/templates/metadata_type_help.html @@ -1,5 +1,29 @@ +{% extends 'generic_help.html' %} + {% load i18n %} -{% blocktrans %}A metadata type defines the characteristics of a value of some kind that can be attached to a document. Examples of metadata types are: a client name, a date, or a project to which several documents belong. A metadata type's name is the internal identifier with which it can be referenced to by other modules such as the indexing module, the title is the value that is shown to the users, the default value is the value an instance of this metadata type will have initially, and the lookup value turns an instance of a metadata of this type into a choice list which options are the result of the lookup's code execution.{% endblocktrans %}
-+ {% blocktrans %} + A metadata type defines the characteristics of a + value of some kind that can be attached to a document. Examples of metadata + types are: a client name, a date, or a project to which several documents + belong. + {% endblocktrans %} +
+ ++ {% blocktrans %} + A metadata type's name is the internal identifier with which it can + be referenced to by other modules such as the indexing module, the title is + the value that is shown to the users, the default value is the value an + instance of this metadata type will have initially, and the lookup value + turns an instance of a metadata of this type into a choice list which + options are the result of the lookup's code execution. + {% endblocktrans %} +
+{% endblock %}