]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
add json & xml
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / Entry / entries.html.twig
CommitLineData
53e12188
AD
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
b1a65df9
NL
3{% block title %}
4 {% set currentRoute = app.request.attributes.get('_route') %}
5
308db016 6 {% if currentRoute == 'starred' %}
4aafa7f0 7 {% trans %}starred{% endtrans %}
b1a65df9 8 {% elseif currentRoute == 'archive' %}
4aafa7f0 9 {% trans %}archive{% endtrans %}
89659c9e
NL
10 {% elseif currentRoute == 'all' %}
11 {% trans %}Filtered{% endtrans %}
308db016 12 {% else %}
4aafa7f0 13 {% trans %}unread{% endtrans %}
b1a65df9
NL
14 {% endif %}
15
16{% endblock %}
53e12188
AD
17
18{% block content %}
19 {% block pager %}
428af5a8
NL
20 <div class="results clearfix">
21 <div class="nb-results left">{% transchoice entries.count %}{0} There is no entry.|{1} There is one entry.|]1,Inf[ There are %count% entries.{% endtranschoice %}</div>
22 <ul class="pagination right">
23 {% for p in range(1, entries.nbPages) if entries.nbPages > 1 %}
24 <li class="{{ currentPage == p ? 'active':'waves-effect'}}">
25 <a href="{{ path(app.request.attributes.get('_route'), app.request.query.all|merge({'page': p})) }}">{{ p }}</a>
26 </li>
27 {% endfor %}
02947111 28 </ul>
428af5a8 29 </div>
53e12188 30 {% endblock %}
428af5a8
NL
31 <br />
32 <ul class="row data">
33 {% for entry in entries %}
34 <li id="entry-{{ entry.id|e }}" class="col l4 m6 s12">
35 <div class="card">
451bad02
AD
36
37 <div class="card-body">
38 {% if not entry.previewPicture is null %}
39 <div class="card-image waves-effect waves-block waves-light">
40 <div class="preview activator" style="background-image: url({{ entry.previewPicture }})"></div>
41 </div>
e610143f 42 {% endif %}
451bad02
AD
43
44 <div class="card-content">
45 {% if not entry.previewPicture is null %}
46 <i class="card-title grey-text text-darken-4 activator mdi-navigation-more-vert right"></i>
47 {% endif %}
48
49 <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw|striptags|slice(0, 42) }}</a></span>
50
51 {% if entry.readingTime > 0 %}
4aafa7f0 52 <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time{% endtrans %}: {{ entry.readingTime }} min</span></div>
451bad02 53 {% else %}
4aafa7f0 54 <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time{% endtrans %}: <small class="inferieur">&lt;</small> 1 min</span></div>
451bad02
AD
55 {% endif %}
56
57 {% if entry.previewPicture is null %}
58 <p>{{ entry.content|striptags|slice(0, 300) }}&hellip;</p>
59 {% endif %}
60 </div>
428af5a8 61 </div>
451bad02
AD
62
63 {% if not entry.previewPicture is null %}
64 <div class="card-reveal">
65 <i class="card-title grey-text text-darken-4 mdi-card-close right"></i>
66 <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw }}</a></span>
67
68 {% if entry.readingTime > 0 %}
4aafa7f0 69 <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time{% endtrans %}: {{ entry.readingTime }} min</span></div>
451bad02 70 {% else %}
4aafa7f0 71 <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time{% endtrans %}: <small class="inferieur">&lt;</small> 1 min</span></div>
451bad02
AD
72 {% endif %}
73
74 <p>{{ entry.content|striptags|slice(0, 300) }}&hellip;</p>
75 </div>
76 {% endif %}
77
428af5a8 78 <div class="card-action">
72fcaf8a 79 <span class="bold"><a href="{{ entry.url|e }}" target="_blank" title="{% trans %}original{% endtrans %}: {{ entry.title|e }} - {{ entry.domainName|removeWww }}" class="tool original grey-text"><span>{{ entry.domainName|removeWww|truncate(18) }}</span></a></bold>
53e12188 80
428af5a8
NL
81 <ul class="tools links right">
82 <li>
83 <a title="{% trans %}Toggle mark as read{% endtrans %}" class="tool grey-text {% if entry.isArchived == 0 %}mdi-action-done{% else %}mdi-content-redo{% endif %}" href="{{ path('archive_entry', { 'id': entry.id }) }}"></a>
50243f0e
NL
84 <a title="{% trans %}Toggle favorite{% endtrans %}" class="tool grey-text {% if entry.isStarred == 0 %}mdi-action-favorite-outline{% else %}mdi-action-favorite{% endif %}" href="{{ path('star_entry', { 'id': entry.id }) }}"></a>
85 <a title="{% trans %}Delete{% endtrans %}" class="tool grey-text delete mdi-action-delete " href="{{ path('delete_entry', { 'id': entry.id }) }}"></a>
428af5a8
NL
86 </li>
87 </ul>
53e12188 88 </div>
428af5a8
NL
89 </div>
90 </li>
91 {% endfor %}
92 </ul>
392f4a26 93
03690d13
TC
94 <!-- Export -->
95 <div id="export" class="side-nav fixed right-aligned">
96 {% set currentRoute = app.request.attributes.get('_route') %}
97 {% if currentRoute == 'homepage' %}
98 {% set currentRoute = 'unread' %}
99 {% endif %}
100 <h4 class="center">{% trans %}Export{% endtrans %}</h4>
101 <ul>
b3cc1a14
TC
102 <li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'epub' }) }}">{% trans %}EPUB{% endtrans %}</a></li>
103 <li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'mobi' }) }}">{% trans %}MOBI{% endtrans %}</a></li>
104 <li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'pdf' }) }}">{% trans %}PDF{% endtrans %}</a></li>
105 <li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'xml' }) }}">{% trans %}XML{% endtrans %}</a></li>
106 <li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'json' }) }}">{% trans %}JSON{% endtrans %}</a></li>
107 <li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'csv' }) }}">{% trans %}CSV{% endtrans %}</a></li>
108 <li class="bold"><del><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'txt' }) }}">{% trans %}TXT{% endtrans %}</a></del></li>
03690d13
TC
109 </ul>
110 </div>
111
392f4a26
AD
112 <!-- Filters -->
113 <div id="filters" class="side-nav fixed right-aligned">
89659c9e 114 <form action="{{ path('all') }}">
392f4a26 115
4b55e704 116 <h4 class="center">{% trans %}Filters{% endtrans %}</h4>
392f4a26
AD
117
118 <div class="row">
db96045a
JB
119 <div class="col s12">
120 <label>{% trans %}Status{% endtrans %}</label>
121 </div>
122
123 <div class="input-field col s6 with-checkbox">
124 {{ form_widget(form.isArchived) }}
125 <label for="entry_filter_isArchived">{% trans %}Archived{% endtrans %}</label>
126 </div>
392f4a26 127
db96045a
JB
128 <div class="input-field col s6 with-checkbox">
129 {{ form_widget(form.isStarred) }}
130 <label for="entry_filter_isStarred">{% trans %}Starred{% endtrans %}</label>
131 </div>
89659c9e
NL
132
133 <div class="col s12">
db96045a 134 <label>{% trans %}Preview picture{% endtrans %}</label>
89659c9e 135 </div>
a3bcd60a 136
db96045a 137 <div class="input-field col s12 with-checkbox">
a3bcd60a
NL
138 {{ form_widget(form.previewPicture) }}
139 <label for="entry_filter_previewPicture">{% trans %}Has a preview picture{% endtrans %}</label>
140 </div>
141
d4ebe5c5
JB
142 <div class="col s12">
143 <label>{% trans %}Language{% endtrans %}</label>
89659c9e
NL
144 </div>
145
d4ebe5c5
JB
146 <div class="input-field col s12">
147 {{ form_widget(form.language) }}
89659c9e
NL
148 </div>
149
392f4a26
AD
150 <div class="col s12">
151 <label>{% trans %}Reading time in minutes{% endtrans %}</label>
152 </div>
392f4a26 153 <div class="input-field col s6">
bac5a345 154 {{ form_widget(form.readingTime.left_number, {'type': 'number'}) }}
392f4a26
AD
155 <label for="entry_filter_readingTime_left_number">{% trans %}from{% endtrans %}</label>
156 </div>
392f4a26 157 <div class="input-field col s6">
bac5a345 158 {{ form_widget(form.readingTime.right_number, {'type': 'number'}) }}
392f4a26
AD
159 <label for="entry_filter_readingTime_right_number">{% trans %}to{% endtrans %}</label>
160 </div>
161
e6439923 162 <div class="input-field col s12">
bdd23b07
NL
163 {{ form_widget(form.domainName, {'type': 'text', 'attr' : {'placeholder': 'website.com'} }) }}
164 <label for="entry_filter_domainName">{% trans %}Domain name{% endtrans %}</label>
165 </div>
166
167 <div class="col s12">
168 <label>{% trans %}Creation date{% endtrans %}</label>
790d18a3 169 </div>
790d18a3 170
72ea6dd1
NL
171 <div class="input-field col s6">
172 {{ form_widget(form.createdAt.left_date, {'type': 'date', 'attr': {'class': 'datepicker', 'data-value': form.createdAt.left_date.vars.value} }) }}
173 <label for="entry_filter_createdAt_left_date" class="active">{% trans %}from{% endtrans %}</label>
174 </div>
175 <div class="input-field col s6">
176 {{ form_widget(form.createdAt.right_date, {'type': 'date', 'attr': {'class': 'datepicker', 'data-value': form.createdAt.right_date.vars.value} }) }}
177 <label for="entry_filter_createdAt_right_date" class="active">{% trans %}to{% endtrans %}</label>
178 </div>
179
392f4a26 180 <div class="col s6">
5f246a55 181 <a href="#!" class="center waves-effect waves-green btn-flat" id="clear_form_filters">{% trans %}Clear{% endtrans %}</a>
392f4a26
AD
182 </div>
183
184 <div class="col s6">
185 <button class="btn waves-effect waves-light" type="submit" id="submit-filter" value="filter">{% trans %}Filter{% endtrans %}</button>
186 </div>
187
188 </div>
189
190 </form>
191 </div>
53e12188 192{% endblock %}