1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-10-30 11:09:03 +01:00
lodel2_mirror/lodel/plugins/webui/templates/admin/admin_delete.html
Yann 0406e91846 Moved plugins folder in lodel/
- updated scripts etc
- make tests pass
2016-11-03 17:02:46 +01:00

17 lines
635 B
HTML

{% extends "base_backend.html" %}
{% block title %}- Suppression in {{target.__name__}}{% endblock %}
{% block body %}
<ol class="breadcrumb">
<li><a href="/{{ root_url }}/admin">Home</a></li>
<li><a href="/{{ root_url }}/admin/object_create">Suppression</a></li>
<li class="active">{{target.__name__}}</li>
</ol>
{% if msg is not none %}
{% block msg %} <p style="color:red; font-size:20pt; font-weight:bold">{{ msg }}</p> {% endblock %}
{% endif %}
<h1 class="h1_lodel">Remove a {{target.__name__}} object</h1>
<div style="text-align:center"> <a class="btn btn-default" href="object_delete">Return</a></div>
{% endblock %}