1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-11-13 01:19:16 +01:00
lodel2_mirror/plugins/webui/templates/admin/show_class_delete.html
2016-09-30 14:03:01 +02:00

20 lines
676 B
HTML

{% extends "base_backend.html" %}
{% block title %}Lodel 2 - Admin - Class {{ target.__name__ }} {% endblock %}
{% block body %}
<ol class="breadcrumb">
<li><a href="/{{ root_url }}/admin">Home</a></li>
<li><a href="/{{ root_url }}/admin/classes_admin">Deletion</a></li>
<li class="active">{{target.__name__ }}</li>
</ol>
<h1 class="h1_lodel">Deletion - {{target.__name__ }} </h1>
{% if not target.is_abstract() %}
{% set objects = target.get(None) %}
<ul>
{% for obj in objects %}
<li><a href="delete?classname={{ target.__name__ }}&lodel_id={{ obj.uid() }}" >{{ obj.uid() }} </a></li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}