{% load indent_text %}{% if use_subgraph %} subgraph {{ graph.cluster_app_name }} { label=<
{{ graph.app_name }}
> color=olivedrab4 style="rounded"{% endif %} {% indentby 2 if use_subgraph %}{% for model in graph.models %} {{ model.app_name }}_{{ model.name }} [label=< {% if not disable_fields %}{% for field in model.fields %} {% if disable_abstract_fields and field.abstract %} {% else %} {% endif %} {% endfor %}{% endif %}
{{ model.label }}{% if model.abstracts %}
<{{ model.abstracts|join:"," }}>{% endif %}
{{ field.label }} {{ field.type }}
>] {% endfor %}{% endindentby %} {% if use_subgraph %} }{% endif %}