|
@@ -1,15 +1,16 @@
|
1
|
1
|
{% extends "base.html" %}
|
|
2
|
+{% import 'macros/show_object.html' as show_object %}
|
2
|
3
|
{% import 'components/components.html' as components %}
|
3
|
4
|
{% set my_class = leapi.name2class(classname) %}
|
4
|
|
-{% set uidfield = my_class.uid_fieldname()[0] %}
|
5
|
|
-{% set objects = my_class.get(('%s = %s') % (uidfield, lodel_id)) %}
|
6
|
|
-{% set obj = objects.pop() %}
|
|
5
|
+{% set obj = my_class.get_from_uid(lodel_id) %}
|
|
6
|
+{% if obj is none %}
|
|
7
|
+ ERROR <!-- conception failure, the controller should test this before calling the template -->
|
|
8
|
+{% endif %}
|
7
|
9
|
{% if my_class.is_abstract() %}
|
8
|
10
|
{% set classname = obj.data('classname') %}
|
9
|
11
|
{% set my_class = my_class.name2class(classname) %}
|
10
|
12
|
{% endif %}
|
11
|
13
|
{% block title %}Object {{ lodel_id }} {% endblock %}
|
12
|
|
-{% import "components/components.html" as components %}
|
13
|
14
|
{% block content %}
|
14
|
15
|
<ol class="breadcrumb">
|
15
|
16
|
<li><a href="/{{ root_url }}/">Home</a></li>
|
|
@@ -18,26 +19,5 @@
|
18
|
19
|
<li class="active">{{ lodel_id }}</li>
|
19
|
20
|
</ol>
|
20
|
21
|
<h1 class="h1_lodel">Lodel 2 - {{ classname }} with uid {{ lodel_id }}</h1>
|
21
|
|
-<ul>
|
22
|
|
- <!-- To get a component HTML code, it is necessary to call : components.<macro_name>(args) -->
|
23
|
|
- {% for fieldname, fieldvalue in obj.fields(include_ro = True).items() %}
|
24
|
|
- {% if fieldvalue is not none %}
|
25
|
|
- {% if fieldvalue.base_type == 'ref' %}
|
26
|
|
- {% if obj.data(fieldname) is iterable %}
|
27
|
|
- <li>{{ fieldname }}
|
28
|
|
- {% set l_classe = fieldvalue.allowed_classes[0] %}
|
29
|
|
- <ul>
|
30
|
|
- {% for rel in obj.data(fieldname) %}
|
31
|
|
- {% set casttype = l_classe.data_handler(l_classe.uid_fieldname()[0]).cast_type %}
|
32
|
|
- {% set rel2 = casttype(rel) %}
|
33
|
|
- <li><a href="show_object?classname={{ l_classe.__name__ }}&lodel_id={{ rel2 }}" >{{ rel2 }}</a></li>
|
34
|
|
- {% endfor %}
|
35
|
|
- </ul></li>
|
36
|
|
- {% endif %}
|
37
|
|
- {% else %}
|
38
|
|
- <li> {{ fieldname }} : {{ obj.data(fieldname) }} </li>
|
39
|
|
- {% endif %}
|
40
|
|
- {% endif %}
|
41
|
|
- {% endfor %}
|
42
|
|
-</ul>
|
|
22
|
+ {{ show_object.object_ul(obj) }}
|
43
|
23
|
{% endblock %}
|