aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2020-04-27 17:57:25 +0200
committerGitHub <noreply@github.com>2020-04-27 17:57:25 +0200
commit976b4bbb115e50feb71accc0e55f1129ac3557e5 (patch)
treefe85e9b1efa90dabd26bf9f8b402a44c94a63300 /src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
parent34fe51454ad405a49c73cf67e8adde9364cf2248 (diff)
parente247450ade3f8e2ccb66aef0553c424e40834570 (diff)
downloadwallabag-976b4bbb115e50feb71accc0e55f1129ac3557e5.tar.gz
wallabag-976b4bbb115e50feb71accc0e55f1129ac3557e5.tar.zst
wallabag-976b4bbb115e50feb71accc0e55f1129ac3557e5.zip
Merge pull request #4360 from wallabag/config-mass-delete
Added confirmation before mass deleting articles
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig2
1 files changed, 1 insertions, 1 deletions
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 f7912b1c..526e3cbb 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
@@ -49,7 +49,7 @@
49 <span> 49 <span>
50 <button class="btn cyan darken-1" type="submit" name="toggle-read" title="{{ 'entry.list.toogle_as_read'|trans }}"><i class="material-icons">done</i></button> 50 <button class="btn cyan darken-1" type="submit" name="toggle-read" title="{{ 'entry.list.toogle_as_read'|trans }}"><i class="material-icons">done</i></button>
51 <button class="btn cyan darken-1" type="submit" name="toggle-star" title="{{ 'entry.list.toogle_as_star'|trans }}" ><i class="material-icons">star</i></button> 51 <button class="btn cyan darken-1" type="submit" name="toggle-star" title="{{ 'entry.list.toogle_as_star'|trans }}" ><i class="material-icons">star</i></button>
52 <button class="btn cyan darken-1" type="submit" name="delete" title="{{ 'entry.list.delete'|trans }}"><i class="material-icons">delete</i></button> 52 <button class="btn cyan darken-1" type="submit" name="delete" onclick="return confirm('{{ 'entry.confirm.delete_entries'|trans|escape('js') }}')" title="{{ 'entry.list.delete'|trans }}"><i class="material-icons">delete</i></button>
53 </span> 53 </span>
54 {% endif %} 54 {% endif %}
55 </li> 55 </li>