ogcp/ogcp/templates/actions/add_server.html

18 lines
431 B
HTML

{% extends 'servers.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block nav_server_add %}active{% endblock %}
{% block content %}
<h1 class="m-5">{{_('Add a server')}}</h1>
{{ wtf.quick_form(form,
action=url_for('server_add_post'),
method='post',
button_map={'submit_btn':'primary'}) }}
{% endblock %}