1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
2022-02-08 11:19:33 -05:00

26 lines
726 B
HTML

{% extends 'base/layout.html' %}
{% load helpers %}
{% load form_helpers %}
{% comment %}
Context:
object: Python instance of the object being deleted
form: The delete confirmation form
form_url: URL for form submission (optional; defaults to current path)
return_url: The URL to which the user is redirected after submitting the form
{% endcomment %}
{% block title %}Delete {{ object|meta:"verbose_name" }}?{% endblock %}
{% block header %}{% endblock %}
{% block content %}
<div class="modal" tabindex="-1" style="display: block; position: static">
<div class="modal-dialog">
<div class="modal-content" >
{% include 'htmx/delete_form.html' %}
</div>
</div>
</div>
{% endblock %}