mirror of https://git.48k.eu/ogcp
24 lines
503 B
HTML
24 lines
503 B
HTML
{% extends 'servers.html' %}
|
|
{% import "bootstrap/wtf.html" as wtf %}
|
|
|
|
{% set sidebar_state = 'disabled' %}
|
|
{% set btn_back = true %}
|
|
|
|
{% block content %}
|
|
|
|
{{ args }}
|
|
|
|
<h2 class="mx-5 subhead-heading">
|
|
{{ _('Delete server %(server_name)s', server_name=form.name.data) }}
|
|
</h2>
|
|
|
|
{{ wtf.quick_form(form,
|
|
action=url_for('server_delete_post'),
|
|
method='post',
|
|
button_map={'submit': 'primary'},
|
|
extra_classes="m-5") }}
|
|
|
|
{% endblock %}
|
|
|
|
|