{{ 'model.id' | trans }} | @@ -41,9 +42,6 @@|
{{ 'model.author' | trans }} | {{ model.author.name }} |
{{ 'model.set.count' | trans }} | {{ sets|length }} | -
{{ 'model.license' | trans }} |
@@ -80,39 +78,57 @@
-
-
- {% for subpart in subparts %}
- {{ blocks.model(subpart['model'], subpart['quantity']) }}
- {% endfor %}
+
+
{% endblock %}
{% block javascripts %}
@@ -120,6 +136,7 @@
+
+
-
+
+
+ Submodels+
+ {% for subpart in submodels %}
+ {{ blocks.model(subpart['model'], subpart['quantity']) }}
+ {% else %}
+
+ {% endfor %}
+
+
+
+ Siblings+
+
+ {% for model in siblings %}
+ {{ blocks.model(model) }}
+ {% else %}
+
+ {% endfor %}
+
+
+
+
Parents+
+
+ {% for subpart in model.parents %}
+ {{ blocks.model(subpart.parent) }}
+ {% else %}
+
+ {% endfor %}
+
+
-
- {% for model in related %}
- {{ blocks.model(model) }}
- {% endfor %}
-
+
+
-
-
-
-
- {% for subpart in model.parents %}
- {{ blocks.model(subpart.parent) }}
- {% endfor %}
-
- |