profile id support in api requests

This commit is contained in:
Mateusz Gruszczyński
2026-06-16 19:46:16 +02:00
parent c796a740d1
commit a73aeb5544
18 changed files with 1823 additions and 185 deletions
+1 -1
View File
@@ -168,7 +168,7 @@
<div class="modal-body">
<label class="form-label" for="profileSelect">Configured rTorrents</label>
<select id="profileSelect" class="form-select profile-select">
{% for p in profiles %}<option value="{{ p.id }}" {% if active_profile and active_profile.id == p.id %}selected{% endif %}>{{ p.name }}</option>{% endfor %}
{% for p in profiles %}<option value="{{ p.id }}" {% if active_profile and active_profile.id == p.id %}selected{% endif %}>#{{ p.id }} — {{ p.name }}</option>{% endfor %}
</select>
<div class="form-text">Changing rTorrent reloads the live torrent snapshot.</div>
</div>