Régis Behmo 556f0bf8f3 Unable to interrupt a running server...
I'm quitting, waiting for the upstream issue to be resolved.
2024-12-19 14:51:43 +01:00

10 lines
343 B
HTML

{% extends "index.html" %}
{% block workspace_header %}{{ plugin_name }}{% endblock %}
{% block workspace_content %}
Enabled: <form method="POST" action="{{ url_for('toggle_plugin', name=plugin_name) }}">
<input type="checkbox" name="enabled" onchange="this.form.submit()" {% if is_enabled %}checked{% endif %} />
</form>
{% endblock %}