1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 03:54:15 +00:00

Fix appsettings

This commit is contained in:
Real-Gecko 2020-06-17 15:23:44 +06:00
parent bb8f95be14
commit eda233ada7
2 changed files with 2 additions and 2 deletions

View file

@ -15,4 +15,4 @@ def get_settings():
pass
for entry in entries:
setattr(app_settings, entry.key, entry.val)
setattr(app_settings, entry.key, entry.value)

View file

@ -1704,7 +1704,7 @@
</div>
</div>
{% if bottom_bar %}
{% if app_settings.VIEW_INSTANCE_DETAIL_BOTTOM_BAR == 'True' %}
{% include 'bottom_bar.html' %}
{% endif %}