1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-17 02:24:05 +02:00

Flextype Box Plugin: Admin #125 #117

- Settings Controller/Views implementation
This commit is contained in:
Awilum
2019-06-01 13:59:24 +03:00
parent 0db21be250
commit d95cb05561

View File

@@ -250,13 +250,13 @@
<h3 class="h3">{{ tr('admin_admin_panel') }}</h3>
<hr>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="admin_panel[theme]">{{ tr('admin_theme') }}</label>
<select id="systemSettingsSystemAdminPanelTheme" name="admin_panel[theme]" class="form-control" required="required">
<option value="light" {% if settings.admin_panel.theme == 'light' %}selected{% endif %}>{{ tr('admin_dark') }}</option>
<option value="dark" {% if settings.admin_panel.theme == 'dark' %}selected{% endif %}>{{ tr('admin_light') }}</option>
<option value="light" {% if settings.admin_panel.theme == 'light' %}selected{% endif %}>{{ tr('admin_light') }}</option>
<option value="dark" {% if settings.admin_panel.theme == 'dark' %}selected{% endif %}>{{ tr('admin_dark') }}</option>
</select>
</div>
</div>