aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-12-16 21:35:32 +0100
committerGitHub <noreply@github.com>2017-12-16 21:35:32 +0100
commitd1224bf9f65a55cc849d1b9b9b5137cccece9aa8 (patch)
tree3c4a127ed75356bd193ba4c816c4d3b15610a76b /src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
parentb10be65ec7543753b435695971e53290733e6616 (diff)
parent65d885da00df8bf8206614b0d773116f95d845bc (diff)
downloadwallabag-d1224bf9f65a55cc849d1b9b9b5137cccece9aa8.tar.gz
wallabag-d1224bf9f65a55cc849d1b9b9b5137cccece9aa8.tar.zst
wallabag-d1224bf9f65a55cc849d1b9b9b5137cccece9aa8.zip
Merge pull request #3513 from wallabag/icons-3437
material: replace exit_to_app, redo and autorenew icons
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
index 5f412967..08f5b0e2 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig
@@ -26,7 +26,7 @@
26 </div> 26 </div>
27 <ul class="tools-list hide-on-small-only"> 27 <ul class="tools-list hide-on-small-only">
28 <li> 28 <li>
29 <a title="{{ 'entry.list.toogle_as_read'|trans }}" class="tool grey-text" href="{{ path('archive_entry', { 'id': entry.id }) }}"><i class="material-icons">{% if entry.isArchived == 0 %}done{% else %}redo{% endif %}</i></a> 29 <a title="{{ 'entry.list.toogle_as_read'|trans }}" class="tool grey-text" href="{{ path('archive_entry', { 'id': entry.id }) }}"><i class="material-icons">{% if entry.isArchived == 0 %}done{% else %}unarchive{% endif %}</i></a>
30 <a title="{{ 'entry.list.toogle_as_star'|trans }}" class="tool grey-text" href="{{ path('star_entry', { 'id': entry.id }) }}"><i class="material-icons">{% if entry.isStarred == 0 %}star_border{% else %}star{% endif %}</i></a> 30 <a title="{{ 'entry.list.toogle_as_star'|trans }}" class="tool grey-text" href="{{ path('star_entry', { 'id': entry.id }) }}"><i class="material-icons">{% if entry.isStarred == 0 %}star_border{% else %}star{% endif %}</i></a>
31 <a title="{{ 'entry.list.delete'|trans }}" onclick="return confirm('{{ 'entry.confirm.delete'|trans|escape('js') }}')" class="tool grey-text delete" href="{{ path('delete_entry', { 'id': entry.id }) }}"><i class="material-icons">delete</i></a> 31 <a title="{{ 'entry.list.delete'|trans }}" onclick="return confirm('{{ 'entry.confirm.delete'|trans|escape('js') }}')" class="tool grey-text delete" href="{{ path('delete_entry', { 'id': entry.id }) }}"><i class="material-icons">delete</i></a>
32 </li> 32 </li>