torent-downloader/templates/transmission.html

9 lines
301 B
HTML

{% block content %}
{% if is_active %}
<h3>Transmission is running!</h3>
<button hx-post="/transmission/stop" hx-target="#content">Stop now!</button>
{% else %}
<h3>Transmission is stopped!</h3>
<button hx-post="/transmission/start" hx-target="#content">Start now!</button>
{% endif %}
{% endblock %}