mirror of
https://github.com/netbox-community/netbox.git
synced 2026-04-26 10:49:07 +02:00
10 lines
373 B
HTML
10 lines
373 B
HTML
{% extends 'generic/confirmation_form.html' %}
|
|
{% load form_helpers %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% blocktrans %}Delete power outlet {{ poweroutlet }}?{% endblocktrans %}{% endblock %}
|
|
|
|
{% block message %}
|
|
<p>{% blocktrans %}Are you sure you want to delete this power outlet from <strong>{{ poweroutlet.device }}</strong>?{% endblocktrans %}</p>
|
|
{% endblock %}
|