blob: 6e71c0c1edb9b95a78308c55d9932b8098a73c63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{% if cls._list_filters %}
**Object listing filters**
{% for item in cls._list_filters %}
- ``{{ item }}``
{% endfor %}
{% endif %}
{% if cls._create_attrs %}
**Object Creation**
{% if cls._create_attrs[0] %}
Mandatory attributes:
{% for item in cls._create_attrs[0] %}
- ``{{ item }}``
{% endfor %}
{% endif %}
{% if cls._create_attrs[1] %}
Optional attributes:
{% for item in cls._create_attrs[1] %}
- ``{{ item }}``
{% endfor %}
{% endif %}
{% endif %}
{% if cls._update_attrs %}
**Object update**
{% if cls._update_attrs[0] %}
Mandatory attributes for object update:
{% for item in cls._update_attrs[0] %}
- ``{{ item }}``
{% endfor %}
{% endif %}
{% if cls._update_attrs[1] %}
Optional attributes for object update:
{% for item in cls._update_attrs[1] %}
- ``{{ item }}``
{% endfor %}
{% endif %}
{% endif %}
|