You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.1 KiB
65 lines
1.1 KiB
4 years ago
|
{% extends "_layout" %}
|
||
|
|
||
|
{% block title -%}
|
||
|
{{object.name}}
|
||
|
{%- endblock %}
|
||
|
|
||
|
{% block nav -%}
|
||
|
<a href="/">Home</a>
|
||
|
{%- endblock %}
|
||
|
|
||
|
{% block content -%}
|
||
|
|
||
|
<h1>{{kind}} "{{object.name}}"</h1>
|
||
|
|
||
|
<table>
|
||
|
{% for property in properties %}
|
||
|
{% for value in property.values %}
|
||
|
<tr>
|
||
|
{% if loop.first %}
|
||
|
<th rowspan="{{property.values | length}}">
|
||
|
{{ property.model.name }}
|
||
|
</th>
|
||
|
{% endif %}
|
||
|
<td title="{{value.id}}">
|
||
|
{{ value.value | print_typed_value }}
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
|
||
|
{% for relation in relations %}
|
||
|
<h3>{{relation.model.name}}</h3>
|
||
|
|
||
|
<ul>
|
||
|
{% for instance in relation.instances %}
|
||
|
<li>
|
||
|
<b>{{instance.related.name}}</b>
|
||
|
|
||
|
{% if instance.properties %}
|
||
|
<br>
|
||
|
<small>
|
||
|
{% for property in instance.properties %}
|
||
|
{%- if 0 != loop.index0 -%}
|
||
|
;
|
||
|
{%- endif -%}
|
||
|
{% for value in property.values %}
|
||
|
{%- if loop.first -%}
|
||
|
<i>{{ property.model.name }}:</i>
|
||
|
{%- else -%}
|
||
|
,
|
||
|
{% endif -%}
|
||
|
{{ value.value | print_typed_value }}
|
||
|
{% endfor %}
|
||
|
{% endfor %}
|
||
|
</small>
|
||
|
{% endif %}
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
|
||
|
{% endfor %}
|
||
|
|
||
|
{%- endblock %}
|