aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/CraueConfigBundle/views/Settings/modify.html.twig
blob: db153270be848cbdd27995a1624f8c86897e5b8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title %}{{ 'menu.left.internal_settings'|trans }}{% endblock %}

{% block content %}
    <div class="row">
        <div class="col s12">
            <div class="card-panel settings">
                {{ form_start(form, {'attr': {'class': 'craue_config_settings_modify'}}) }}
                    {{ form_errors(form) }}

                    <div class="row">
                        <div class="div_tabs col s12">
                            <ul class="tabs">
                                {% for section in sections | craue_sortSections %}
                                    <li class="tab col s12 m6 l3"><a href="#set-{{ section }}">{{ section | trans({}, 'CraueConfigBundle') }}</a></li>
                                {% endfor %}
                            </ul>
                        </div>

                        {% for section in sections | craue_sortSections %}
                            <div id="set-{{ section }}" class="col s12">
                                {% for setting in form.settings if setting.vars.value.section == section %}
                                    {{ form_row(setting.value, {
                                        'label': setting.vars.value.name | trans({}, 'CraueConfigBundle'),
                                    }) }}
                                {% endfor %}
                            </div>
                        {% endfor %}
                </div>

                <button class="btn waves-effect waves-light" type="submit" name="action">
                    {{ 'modify_settings' | trans({}, 'CraueConfigBundle') }}
                </button>

                {{ form_widget(form._token) }}
            </div>
        </div>
    </div>
{% endblock %}