{% extends "base.html" %} {% import 'macros/show_object.html' as show_object %} {% import 'components/components.html' as components %} {% set my_class = leapi.name2class(classname) %} {% set obj = my_class.get_from_uid(lodel_id) %} {% if obj is none %} ERROR {% endif %} {% if my_class.is_abstract() %} {% set classname = obj.data('classname') %} {% set my_class = my_class.name2class(classname) %} {% endif %} {% block title %}Object {{ lodel_id }} {% endblock %} {% block content %}

Lodel 2 - {{ classname }} with uid {{ lodel_id }}

{{ show_object.object_ul(obj) }} {% endblock %}