]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
implement FosUser
[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' %}
b1a65df9
NL
7 {% trans %}Starred{% endtrans %}
8 {% elseif currentRoute == 'archive' %}
9 {% trans %}Archive{% endtrans %}
89659c9e
NL
10 {% elseif currentRoute == 'all' %}
11 {% trans %}Filtered{% endtrans %}
308db016
NL
12 {% else %}
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">
36 <div class="card-content">
37 <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw }}</a></span>
38 {% if entry.readingTime > 0 %}
39 <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time: {% endtrans %} {{ entry.readingTime }} min</span></div>
40 {% else %}
41 <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time: {% endtrans %} <small class="inferieur">&lt;</small> 1 min</span></div>
42 {% endif %}
50243f0e 43 <p>{{ entry.content|striptags|slice(0, 300) }}&hellip;</p>
428af5a8
NL
44 </div>
45 <div class="card-action">
50243f0e 46 <span class="bold"><a href="{{ entry.url|e }}" target="_blank" title="{% trans %}original{% endtrans %}: {{ entry.title|e }} - {{ entry.domainName }}" class="tool original grey-text"><span>{{ entry.domainName | truncate(18) }}</span></a></bold>
53e12188 47
428af5a8
NL
48 <ul class="tools links right">
49 <li>
50 <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
51 <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>
52 <a title="{% trans %}Delete{% endtrans %}" class="tool grey-text delete mdi-action-delete " href="{{ path('delete_entry', { 'id': entry.id }) }}"></a>
428af5a8
NL
53 </li>
54 </ul>
53e12188 55 </div>
428af5a8
NL
56 </div>
57 </li>
58 {% endfor %}
59 </ul>
392f4a26 60
392f4a26
AD
61 <!-- Filters -->
62 <div id="filters" class="side-nav fixed right-aligned">
89659c9e 63 <form action="{{ path('all') }}">
392f4a26
AD
64
65 <h4 class="center">{% trans %}Filters{% endtrans %}</h1>
66
67 <div class="row">
68
89659c9e
NL
69
70 <div class="col s12">
71 <label>{% trans %}Status{% endtrans %}</label>
72 </div>
73 <div class="input-field col s6">
74 {{ form_widget(form.isArchived) }}
75 <label for="entry_filter_isArchived">{% trans %}Archived{% endtrans %}</label>
76 </div>
77
78 <div class="input-field col s6">
79 {{ form_widget(form.isStarred) }}
80 <label for="entry_filter_isStarred">{% trans %}Starred{% endtrans %}</label>
81 </div>
82
392f4a26
AD
83 <div class="col s12">
84 <label>{% trans %}Reading time in minutes{% endtrans %}</label>
85 </div>
392f4a26 86 <div class="input-field col s6">
bac5a345 87 {{ form_widget(form.readingTime.left_number, {'type': 'number'}) }}
392f4a26
AD
88 <label for="entry_filter_readingTime_left_number">{% trans %}from{% endtrans %}</label>
89 </div>
392f4a26 90 <div class="input-field col s6">
bac5a345 91 {{ form_widget(form.readingTime.right_number, {'type': 'number'}) }}
392f4a26
AD
92 <label for="entry_filter_readingTime_right_number">{% trans %}to{% endtrans %}</label>
93 </div>
94
e6439923 95 <div class="input-field col s12">
bdd23b07
NL
96 {{ form_widget(form.domainName, {'type': 'text', 'attr' : {'placeholder': 'website.com'} }) }}
97 <label for="entry_filter_domainName">{% trans %}Domain name{% endtrans %}</label>
98 </div>
99
100 <div class="col s12">
101 <label>{% trans %}Creation date{% endtrans %}</label>
790d18a3 102 </div>
790d18a3 103
72ea6dd1
NL
104 <div class="input-field col s6">
105 {{ form_widget(form.createdAt.left_date, {'type': 'date', 'attr': {'class': 'datepicker', 'data-value': form.createdAt.left_date.vars.value} }) }}
106 <label for="entry_filter_createdAt_left_date" class="active">{% trans %}from{% endtrans %}</label>
107 </div>
108 <div class="input-field col s6">
109 {{ form_widget(form.createdAt.right_date, {'type': 'date', 'attr': {'class': 'datepicker', 'data-value': form.createdAt.right_date.vars.value} }) }}
110 <label for="entry_filter_createdAt_right_date" class="active">{% trans %}to{% endtrans %}</label>
111 </div>
112
392f4a26 113 <div class="col s6">
5f246a55 114 <a href="#!" class="center waves-effect waves-green btn-flat" id="clear_form_filters">{% trans %}Clear{% endtrans %}</a>
392f4a26
AD
115 </div>
116
117 <div class="col s6">
118 <button class="btn waves-effect waves-light" type="submit" id="submit-filter" value="filter">{% trans %}Filter{% endtrans %}</button>
119 </div>
120
121 </div>
122
123 </form>
124 </div>
53e12188 125{% endblock %}