aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/edit.html.twig
blob: c002c4c35e87e1e6d5296aa297a7f095430b57da (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
41
42
43
44
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title %}{% trans %}Edit an entry{% endtrans %}{% endblock %}

{% block content %}

    <div class="row">
        <div class="col s12">
            <div class="card-panel">

                <form name="entry" method="post" action="">
                    <div class="card-content">

                        {% if form_errors(form) %}
                            <span class="black-text">{{ form_errors(form) }}</span>
                        {% endif %}

                        {% if form_errors(form.title) %}
                            <span class="black-text">{{ form_errors(form.title) }}</span>
                        {% endif %}

                        <div class="input-field s12">
                            {{ form_label(form.title) }}
                            {{ form_widget(form.title) }}
                        </div>

                        <div class="input-field s12">
                            {{ form_widget(form.is_public) }}
                            {{ form_label(form.is_public) }}
                        </div>
                        <br>
                        <button class="btn waves-effect waves-light" type="submit" name="entry[save]">
                            {% trans %}Save{% endtrans %}
                            <i class="mdi-content-send right"></i>
                        </button>
                    </div>
                    <div class="hidden">{{ form_rest(form) }}</div>
                </form>

            </div>
        </div>
    </div>

{% endblock %}