feat: fix migrate_to_wmt playbook; restructure sidebar nav; add Client Name column to WMT dashboard

This commit is contained in:
ske087
2026-05-12 16:42:37 +03:00
parent 10dd0a560c
commit ccad5c1201
6 changed files with 63 additions and 20 deletions
+6
View File
@@ -91,6 +91,12 @@
<h6 class="text-muted fw-bold mb-2 small text-uppercase">Custom Playbooks</h6>
<select class="form-select" id="customPlaybook">
<option value="">— select custom playbook —</option>
{% for pb in custom_playbooks %}
<option value="{{ pb.name }}"
{% if preselect_playbook == pb.filename or preselect_playbook == pb.name %}selected{% endif %}>
{{ pb.name }}
</option>
{% endfor %}
</select>
<input type="hidden" name="playbook" id="selectedPlaybook">
</div>