]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
Hide pagination if we only have one entry to display
[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 {{ 'entry.page_titles.starred'|trans }}
8 {% elseif currentRoute == 'archive' %}
9 {{ 'entry.page_titles.archived'|trans }}
10 {% elseif currentRoute == 'all' %}
11 {{ 'entry.page_titles.filtered'|trans }}
12 {% else %}
13 {{ 'entry.page_titles.unread'|trans }}
14 {% endif %}
15
16 {% endblock %}
17
18 {% block content %}
19 {% block pager %}
20 <div class="results clearfix">
21 <div class="nb-results left">
22 {{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}
23 </div>
24 {% if entries.count > 1 %}
25 {{ pagerfanta(entries, 'twitter_bootstrap_translated', {'proximity': 1}) }}
26 {% endif %}
27 </div>
28 {% endblock %}
29 <br />
30 <ul class="row data">
31 {% for entry in entries %}
32 <li id="entry-{{ entry.id|e }}" class="col l4 m6 s12">
33 <div class="card">
34
35 <div class="card-body">
36 {% if not entry.previewPicture is null %}
37 <div class="card-image waves-effect waves-block waves-light">
38 <div class="preview activator" style="background-image: url({{ entry.previewPicture }})"></div>
39 </div>
40 {% endif %}
41
42 <div class="card-content">
43 {% if not entry.previewPicture is null %}
44 <i class="card-title grey-text text-darken-4 activator mdi-navigation-more-vert right"></i>
45 {% endif %}
46
47 <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title|raw }}">{{ entry.title|striptags|slice(0, 42)|raw }}</a></span>
48
49 <div class="estimatedTime grey-text">
50 <span class="tool reading-time">
51 {% set readingTime = entry.readingTime / app.user.config.readingSpeed %}
52 {% if readingTime > 0 %}
53 {{ 'entry.list.reading_time_minutes'|trans({'%readingTime%': readingTime|round}) }}
54 {% else %}
55 {{ 'entry.list.reading_time_less_one_minute'|trans|raw }}
56 {% endif %}
57 </span>
58 </div>
59
60 {% if entry.previewPicture is null %}
61 <p>{{ entry.content|striptags|slice(0, 300)|raw }}&hellip;</p>
62 {% endif %}
63 </div>
64 </div>
65
66 {% if not entry.previewPicture is null %}
67 <div class="card-reveal">
68 <i class="card-title grey-text text-darken-4 mdi-card-close right"></i>
69 <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw }}</a></span>
70
71 <div class="estimatedTime grey-text">
72 <span class="tool reading-time">
73 {% if readingTime > 0 %}{{ 'entry.list.reading_time_minutes'|trans({'%readingTime%': readingTime|round}) }}{% else %}{{ 'entry.list.reading_time_less_one_minute'|trans|raw }}{% endif %}
74 </span>
75 </div>
76
77 <p>{{ entry.content|striptags|slice(0, 300)|raw }}&hellip;</p>
78 </div>
79 {% endif %}
80
81 <div class="card-action">
82 <span class="bold">
83 <a href="{{ entry.url|e }}" target="_blank" title="{{ 'entry.list.original_article'|trans }}: {{ entry.title|e }} - {{ entry.domainName|removeWww }}" class="tool original grey-text"><span>{{ entry.domainName|removeWww|truncate(18) }}</span></a>
84 </bold>
85
86 <ul class="tools links right">
87 <li>
88 <a title="{{ 'entry.list.toogle_as_read'|trans }}" 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="{{ 'entry.list.toogle_as_star'|trans }}" 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="{{ 'entry.list.delete'|trans }}" 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">{{ 'entry.list.export_title'|trans }}</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">{{ 'entry.filters.title'|trans }}</h4>
122
123 <div class="row">
124 <div class="col s12">
125 <label>{{ 'entry.filters.status_label'|trans }}</label>
126 </div>
127
128 <div class="input-field col s6 with-checkbox">
129 {{ form_widget(form.isArchived) }}
130 {{ form_label(form.isArchived) }}
131 </div>
132
133 <div class="input-field col s6 with-checkbox">
134 {{ form_widget(form.isStarred) }}
135 {{ form_label(form.isStarred) }}
136 </div>
137
138 <div class="col s12">
139 <label>{{ 'entry.filters.preview_picture_help'|trans }}</label>
140 </div>
141
142 <div class="input-field col s12 with-checkbox">
143 {{ form_widget(form.previewPicture) }}
144 {{ form_label(form.previewPicture) }}
145 </div>
146
147 <div class="col s12">
148 {{ form_label(form.language) }}
149 </div>
150
151 <div class="input-field col s12">
152 {{ form_widget(form.language) }}
153 </div>
154
155 <div class="col s12">
156 {{ form_label(form.readingTime) }}
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">{{ 'entry.filters.reading_time.from'|trans }}</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">{{ 'entry.filters.reading_time.to'|trans }}</label>
165 </div>
166
167 <div class="input-field col s12">
168 {{ form_widget(form.domainName, {'type': 'text', 'attr' : {'placeholder': 'website.com'} }) }}
169 {{ form_label(form.domainName) }}
170 </div>
171
172 <div class="col s12">
173 {{ form_label(form.createdAt) }}
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">{{ 'entry.filters.created_at.from'|trans }}</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">{{ 'entry.filters.created_at.to'|trans }}</label>
183 </div>
184
185 <div class="col s6">
186 <a href="#!" class="center waves-effect waves-green btn-flat" id="clear_form_filters">{{ 'entry.filters.action.clear'|trans }}</a>
187 </div>
188
189 <div class="col s6">
190 <button class="btn waves-effect waves-light" type="submit" id="submit-filter" value="filter">{{ 'entry.filters.action.filter'|trans }}</button>
191 </div>
192 </div>
193
194 </form>
195 </div>
196 {% endblock %}