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