mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-14 22:11:51 +00:00
10 lines
248 B
HTML
10 lines
248 B
HTML
{% extends "base.html" %}
|
|
{% block body %}
|
|
|
|
Are you sure you want to delete "{{ vmname }}"?
|
|
|
|
<form action="/proxstar/confirm_delete" method="post">
|
|
<button type="submit" name="delete" value="{{ vmid }}">CONFIRM</button>
|
|
</form>
|
|
|
|
{% endblock %}
|