mirror of https://github.com/jumpserver/jumpserver
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.
15 lines
338 B
15 lines
338 B
{% load i18n %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% trans 'Confirm delete' %}</title>
|
|
</head>
|
|
<body>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<p>{% trans 'Are you sure delete' %} <b>{{ object.name }} </b> ?</p>
|
|
<input type="submit" value="Confirm" />
|
|
</form>
|
|
</body>
|
|
</html> |