X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FResources%2Fviews%2Fthemes%2Fmaterial%2FEntry%2Fentries.html.twig;h=7e48619e8c4a0afeacb6fd1d78969812558f9332;hb=f9987d4a213627c6e09eee80743d42c344482e69;hp=3906e1e0ebda871dad40b0cf1385635b0f398156;hpb=d8e961bdb58c799dde11e5f5de9405ce0e969d4a;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig index 3906e1e0..7e48619e 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig @@ -24,6 +24,7 @@ {% if currentRoute == 'homepage' %} {% set currentRoute = 'unread' %} {% endif %} +
{{ 'entry.list.number_on_the_page'|transchoice(entries.count) }} @@ -38,8 +39,23 @@
+ {% if entries.getNbPages > 1 %}
@@ -63,15 +80,20 @@ {% if tag is defined %} {% set currentTag = tag.slug %} {% endif %} + {% set exportSearchTerm = null %} + {% if searchTerm is defined %} + {% set exportSearchTerm = searchTerm %} + {% endif %} + {% set previousRoute = app.request.attributes.get('currentRoute') %}

{{ 'entry.list.export_title'|trans }}

    - {% if craue_setting('export_epub') %}
  • EPUB
  • {% endif %} - {% if craue_setting('export_mobi') %}
  • MOBI
  • {% endif %} - {% if craue_setting('export_pdf') %}
  • PDF
  • {% endif %} - {% if craue_setting('export_json') %}
  • JSON
  • {% endif %} - {% if craue_setting('export_csv') %}
  • CSV
  • {% endif %} - {% if craue_setting('export_txt') %}
  • TXT
  • {% endif %} - {% if craue_setting('export_xml') %}
  • XML
  • {% endif %} + {% if craue_setting('export_epub') %}
  • EPUB
  • {% endif %} + {% if craue_setting('export_mobi') %}
  • MOBI
  • {% endif %} + {% if craue_setting('export_pdf') %}
  • PDF
  • {% endif %} + {% if craue_setting('export_json') %}
  • JSON
  • {% endif %} + {% if craue_setting('export_csv') %}
  • CSV
  • {% endif %} + {% if craue_setting('export_txt') %}
  • TXT
  • {% endif %} + {% if craue_setting('export_xml') %}
  • XML
  • {% endif %}
@@ -187,4 +209,40 @@
{% endif %} + +
+ +

{{ 'entry.sort.title'|trans }}

+ +
+
+ +
+ +
+ + {{ form_label(form.isArchived) }} +
+ +
+
+ +
+
+
+ +
+ + {% include "WallabagCoreBundle:Entry:pager.html.twig" with {'entries': entries} %} + {% endblock %}