40ea448c7b
* Revise and link inline to the lists of modules * Fix jinja2 objects.inv fallback path * Fix bolding of deprecation marker * Change module_support to link to lists via :doc: That links to the top of the page instead of a section. * Add a short text for each list of maintained modules * Change maintenance info to only display on core and network modules
15 lines
578 B
Django/Jinja
15 lines
578 B
Django/Jinja
.. _@{ slug }@:
|
|
|
|
Modules Maintained by the @{ maintainers }@
|
|
``````````````````````````@{ '`' * maintainers | length }@
|
|
|
|
.. toctree:: :maxdepth: 1
|
|
|
|
{% for module in modules | sort %}
|
|
@{ module }@{% if module_info[module]['deprecated'] %} **(D)**{% endif %} - @{ module_info[module]['doc']['short_description'] }@ <@{ module }@_module>
|
|
{% endfor %}
|
|
|
|
.. note::
|
|
- **(D)**: This marks a module as deprecated, which means a module is kept for backwards compatibility but usage is discouraged.
|
|
The module documentation details page may explain more about this rationale.
|
|
|