No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

admin_delete.html 635B

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