Overlay Manager
Back to Main App
{% if error_msg %}
{{ error_msg }}
{% endif %}
Profiles / Loadouts
{% for p in profiles %}
{{ p.name }} {% if p.is_readonly %}
{% elif p.is_locked %}
{% endif %} {% if p.id == active_profile.id %}
{% endif %}
{% endfor %}
Editing:
{{ filepath }}
Back to Loadout
{% if active_profile.is_readonly or active_profile.is_locked %}
This profile is locked or read-only. You can view the file but cannot save changes.
{% endif %}
{{ content }}
{% if not active_profile.is_readonly and not active_profile.is_locked %}
Cancel
Save Changes to DB
{% endif %}