X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FResources%2Fviews%2Fthemes%2Fbaggy%2FEntry%2Fentries.html.twig;h=4182628f658e2bc4ef83a846bd30618975c4011b;hb=HEAD;hp=6c5d260160ced8a769089640d5fb625bb411837c;hpb=73ec68b1ffafb792265a3805833e5cd84c966aed;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig index 6c5d2601..4182628f 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig @@ -46,7 +46,7 @@

{{ entry.title | striptags | truncate(80, true, '…') | default('entry.default_title'|trans) | raw }}

- {% set readingTime = entry.readingTime / app.user.config.readingSpeed %} + {% set readingTime = entry.readingTime / app.user.config.readingSpeed * 200 %}
{% if readingTime > 0 %} @@ -96,16 +96,21 @@ {% if tag is defined %} {% set currentTag = tag %} {% 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 %}
@@ -117,6 +122,12 @@ ×
+ {% if currentRoute != 'untagged' and nbEntriesUntagged != 0 %} +
+ {{ 'tag.list.see_untagged_entries'|trans }} ({{nbEntriesUntagged}}) +
+ {% endif %} +