mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-11 09:35:41 +00:00
InvenTree
ci
docs
_static
templates
python
module.rst
Makefile
conf.py
forms.rst
index.rst
make.bat
modules.rst
reference.rst
requirements.txt
rest.rst
tables.rst
translate.rst
images
.coveragerc
.gitattributes
.gitignore
.travis.yml
CONTRIBUTING.md
LICENSE
README.md
requirements.txt
setup.cfg
tasks.py
98 lines
1.9 KiB
ReStructuredText
98 lines
1.9 KiB
ReStructuredText
{% if not obj.display %}
|
|
:orphan:
|
|
|
|
{% endif %}
|
|
:mod:`{{ obj.name }}`
|
|
======={{ "=" * obj.name|length }}
|
|
|
|
.. py:module:: {{ obj.name }}
|
|
|
|
{% if obj.docstring %}
|
|
.. autoapi-nested-parse::
|
|
|
|
{{ obj.docstring|prepare_docstring|indent(3) }}
|
|
|
|
{% endif %}
|
|
|
|
{% block subpackages %}
|
|
{% set visible_subpackages = obj.subpackages|selectattr("display")|list %}
|
|
{% if visible_subpackages %}
|
|
Subpackages
|
|
-----------
|
|
.. toctree::
|
|
:titlesonly:
|
|
:maxdepth: 3
|
|
|
|
{% for subpackage in visible_subpackages %}
|
|
{{ subpackage.short_name }}/index.rst
|
|
{% endfor %}
|
|
|
|
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block submodules %}
|
|
{% set visible_submodules = obj.submodules|selectattr("display")|list %}
|
|
{% if visible_submodules %}
|
|
Submodules
|
|
----------
|
|
|
|
The {{ obj.name }} module contains the following submodules
|
|
|
|
.. toctree::
|
|
:titlesonly:
|
|
:maxdepth: 1
|
|
|
|
{% for submodule in visible_submodules %}
|
|
{{ submodule.short_name }}/index.rst
|
|
{% endfor %}
|
|
|
|
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% set visible_children = obj.children|selectattr("display")|list %}
|
|
{% if visible_children %}
|
|
{{ obj.type|title }} Contents
|
|
{{ "-" * obj.type|length }}---------
|
|
|
|
{% set visible_classes = visible_children|selectattr("type", "equalto", "class")|list %}
|
|
{% set visible_functions = visible_children|selectattr("type", "equalto", "function")|list %}
|
|
{% if include_summaries and (visible_classes or visible_functions) %}
|
|
{% block classes %}
|
|
{% if visible_classes %}
|
|
Classes
|
|
~~~~~~~
|
|
|
|
.. autoapisummary::
|
|
|
|
{% for klass in visible_classes %}
|
|
{{ klass.id }}
|
|
{% endfor %}
|
|
|
|
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block functions %}
|
|
{% if visible_functions %}
|
|
Functions
|
|
~~~~~~~~~
|
|
|
|
.. autoapisummary::
|
|
|
|
{% for function in visible_functions %}
|
|
{{ function.id }}
|
|
{% endfor %}
|
|
|
|
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% endif %}
|
|
{% for obj_item in visible_children %}
|
|
{% if obj.all is none or obj_item.short_name in obj.all %}
|
|
{{ obj_item.rendered|indent(0) }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|