summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/wol.html
blob: 61494f9670c338a33eb35dd5eb1833af5c8baaf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'base.html' %}
{% import "bootstrap/wtf.html" as wtf %}

{% block content %}

{{ wtf.quick_form(form,
                  action=url_for('action_wol'),
                  method='post',
                  button_map={'submit': 'primary'},
                  extra_classes='m-5')}}

{% endblock %}