]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Added tags on list view
authorNicolas Lœuillet <nicolas@loeuillet.org>
Wed, 3 May 2017 09:48:43 +0000 (11:48 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Tue, 30 May 2017 07:51:49 +0000 (09:51 +0200)
src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig

index 174b7b54c3e0727520927539a09380b1fcdc63ee..24d76a05ca0067612bdb6fbc175a6898ed25b37a 100644 (file)
@@ -6,13 +6,20 @@
                     {{ entry.title| striptags | truncate(120, true, '…') | raw }}
                 </a>
             </span>
-            <ul class="tools-list right">
+            <ul class="right">
                 <li>
                     <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>
                     <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>
                     <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>
                 </li>
             </ul>
+            <div class="right">
+            {% for tag in entry.tags | slice(0, 3) %}
+                <span class="chip">
+                    <a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a> <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="material-icons">delete</i></a>
+                </span>
+            {% endfor %}
+            </div>
         </div>
     </div>
 </div>