{% extends "base.html" %} {% block title %}The {{ object.name }} object{% endblock %} {% block content %}
Type: {{ object.pretty_object_type }}
{% if object.description %} {{ object.description|safe }} {% endif %} {% if child_relationships %}Name | Type | Required? | Description |
---|---|---|---|
{% if rel.child.is_array %}
An array of
{% for childrel in rel.child.get_child_relationships %}
{{ childrel.child.name }} objects{% if not forloop.last %}, {% endif %}
{% endfor %}
{% elif rel.child.is_literal_string %}
The string "{{ rel.child.description }}"
{% else %}
{{ rel.child.name }} object
{% endif %}
|
{{ rel.is_required|yesno|title }} | {{ rel.description|safe|linebreaksbr }} |
Value | Description |
---|---|
{{ enum_value.description|safe|linebreaksbr }} |
This object is used in the following examples:
{% for example in examples %}