]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
Merge pull request #1663 from wallabag/v2-remove-tags-from-entry
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / Entry / entries.html.twig
1 {% extends "WallabagCoreBundle::layout.html.twig" %}
2
3 {% block title %}
4 {% set currentRoute = app.request.attributes.get('_route') %}
5
6 {% if currentRoute == 'starred' %}
7 {% trans %}starred{% endtrans %}
8 {% elseif currentRoute == 'archive' %}
9 {% trans %}archive{% endtrans %}
10 {% elseif currentRoute == 'all' %}
11 {% trans %}Filtered{% endtrans %}
12 {% else %}
13 {% trans %}unread{% endtrans %}
14 {% endif %}
15
16 {% endblock %}
17
18 {% block content %}
19 {% block pager %}
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 %}
28 </ul>
29 </div>
30 {% endblock %}
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">
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>
42 {% endif %}
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|striptags|slice(0, 42)|raw }}</a></span>
50
51 <div class="estimatedTime grey-text">
52 <span class="tool reading-time">
53 {% trans %}estimated reading time{% endtrans %}:
54 {% if entry.readingTime > 0 %}{{ entry.readingTime }}{% else %}<small class="inferieur">&lt;</small> 1{% endif %} min
55 </span>
56 </div>
57
58 {% if entry.previewPicture is null %}
59 <p>{{ entry.content|striptags|slice(0, 300)|raw }}&hellip;</p>
60 {% endif %}
61 </div>
62 </div>
63
64 {% if not entry.previewPicture is null %}
65 <div class="card-reveal">
66 <i class="card-title grey-text text-darken-4 mdi-card-close right"></i>
67 <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw }}</a></span>
68
69 <div class="estimatedTime grey-text">
70 <span class="tool reading-time">
71 {% trans %}estimated reading time{% endtrans %}:
72 {% if entry.readingTime > 0 %}{{ entry.readingTime }}{% else %}<small class="inferieur">&lt;</small> 1{% endif %} min
73 </span>
74 </div>
75
76 <p>{{ entry.content|striptags|slice(0, 300)|raw }}&hellip;</p>
77 </div>
78 {% endif %}
79
80 <div class="card-action">
81 <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>
82
83 <ul class="tools links right">
84 <li>
85 <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>
86 <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>
87 <a title="{% trans %}Delete{% endtrans %}" class="tool grey-text delete mdi-action-delete " href="{{ path('delete_entry', { 'id': entry.id }) }}"></a>
88 </li>
89 </ul>
90 </div>
91 </div>
92 </li>
93 {% endfor %}
94 </ul>
95
96 <!-- Export -->
97 <div id="export" class="side-nav fixed right-aligned">
98 {% set currentRoute = app.request.attributes.get('_route') %}
99 {% if currentRoute == 'homepage' %}
100 {% set currentRoute = 'unread' %}
101 {% endif %}
102 <h4 class="center">{% trans %}Export{% endtrans %}</h4>
103 <ul>
104 {% if craue_setting('export_epub') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'epub' }) }}">EPUB</a></li>{% endif %}
105 {% if craue_setting('export_mobi') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'mobi' }) }}">MOBI</a></li>{% endif %}
106 {% if craue_setting('export_pdf') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'pdf' }) }}">PDF</a></li>{% endif %}
107 {% if craue_setting('export_csv') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'json' }) }}">JSON</a></li>{% endif %}
108 {% if craue_setting('export_json') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'csv' }) }}">CSV</a></li>{% endif %}
109 {% if craue_setting('export_txt') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'txt' }) }}">TXT</a></li>{% endif %}
110 {% if craue_setting('export_xml') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'xml' }) }}">XML</a></li>{% endif %}
111 </ul>
112 </div>
113
114 <!-- Filters -->
115 <div id="filters" class="side-nav fixed right-aligned">
116 <form action="{{ path('all') }}">
117
118 <h4 class="center">{% trans %}Filters{% endtrans %}</h4>
119
120 <div class="row">
121 <div class="col s12">
122 <label>{% trans %}Status{% endtrans %}</label>
123 </div>
124
125 <div class="input-field col s6 with-checkbox">
126 {{ form_widget(form.isArchived) }}
127 <label for="entry_filter_isArchived">{% trans %}Archived{% endtrans %}</label>
128 </div>
129
130 <div class="input-field col s6 with-checkbox">
131 {{ form_widget(form.isStarred) }}
132 <label for="entry_filter_isStarred">{% trans %}Starred{% endtrans %}</label>
133 </div>
134
135 <div class="col s12">
136 <label>{% trans %}Preview picture{% endtrans %}</label>
137 </div>
138
139 <div class="input-field col s12 with-checkbox">
140 {{ form_widget(form.previewPicture) }}
141 <label for="entry_filter_previewPicture">{% trans %}Has a preview picture{% endtrans %}</label>
142 </div>
143
144 <div class="col s12">
145 <label>{% trans %}Language{% endtrans %}</label>
146 </div>
147
148 <div class="input-field col s12">
149 {{ form_widget(form.language) }}
150 </div>
151
152 <div class="col s12">
153 <label>{% trans %}Reading time in minutes{% endtrans %}</label>
154 </div>
155 <div class="input-field col s6">
156 {{ form_widget(form.readingTime.left_number, {'type': 'number'}) }}
157 <label for="entry_filter_readingTime_left_number">{% trans %}from{% endtrans %}</label>
158 </div>
159 <div class="input-field col s6">
160 {{ form_widget(form.readingTime.right_number, {'type': 'number'}) }}
161 <label for="entry_filter_readingTime_right_number">{% trans %}to{% endtrans %}</label>
162 </div>
163
164 <div class="input-field col s12">
165 {{ form_widget(form.domainName, {'type': 'text', 'attr' : {'placeholder': 'website.com' | trans} }) }}
166 <label for="entry_filter_domainName">{% trans %}Domain name{% endtrans %}</label>
167 </div>
168
169 <div class="col s12">
170 <label>{% trans %}Creation date{% endtrans %}</label>
171 </div>
172
173 <div class="input-field col s6">
174 {{ form_widget(form.createdAt.left_date, {'type': 'date', 'attr': {'class': 'datepicker', 'data-value': form.createdAt.left_date.vars.value} }) }}
175 <label for="entry_filter_createdAt_left_date" class="active">{% trans %}from{% endtrans %}</label>
176 </div>
177 <div class="input-field col s6">
178 {{ form_widget(form.createdAt.right_date, {'type': 'date', 'attr': {'class': 'datepicker', 'data-value': form.createdAt.right_date.vars.value} }) }}
179 <label for="entry_filter_createdAt_right_date" class="active">{% trans %}to{% endtrans %}</label>
180 </div>
181
182 <div class="col s6">
183 <a href="#!" class="center waves-effect waves-green btn-flat" id="clear_form_filters">{% trans %}Clear{% endtrans %}</a>
184 </div>
185
186 <div class="col s6">
187 <button class="btn waves-effect waves-light" type="submit" id="submit-filter" value="filter">{% trans %}Filter{% endtrans %}</button>
188 </div>
189
190 </div>
191
192 </form>
193 </div>
194 {% endblock %}