aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-07 13:47:35 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-07 13:47:35 +0200
commitc6cbe75b2ee29bf62ceb36de4d81bf64693c859f (patch)
tree36abdadf500fb25731a8501e2ca272ceb5eebbd6
parent9479ae834c2953f2c46e1484a6ef28e0d2e0cb09 (diff)
downloadwallabag-c6cbe75b2ee29bf62ceb36de4d81bf64693c859f.tar.gz
wallabag-c6cbe75b2ee29bf62ceb36de4d81bf64693c859f.tar.zst
wallabag-c6cbe75b2ee29bf62ceb36de4d81bf64693c859f.zip
Move tag form in Material theme
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
index 032d2d9b..66435699 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
@@ -192,14 +192,14 @@
192 {% endfor %} 192 {% endfor %}
193 </div> 193 </div>
194 194
195 {% if entry.previewPicture is not null %}
196 <div><img class="preview" src="{{ entry.previewPicture }}" alt="{{ entry.title|raw }}" /></div>
197 {% endif %}
198
199 <div class="input-field nav-panel-add-tag" style="display: none"> 195 <div class="input-field nav-panel-add-tag" style="display: none">
200 {{ render(controller( "WallabagCoreBundle:Tag:addTagForm", { 'id': entry.id } )) }} 196 {{ render(controller( "WallabagCoreBundle:Tag:addTagForm", { 'id': entry.id } )) }}
201 </div> 197 </div>
202 198
199 {% if entry.previewPicture is not null %}
200 <div><img class="preview" src="{{ entry.previewPicture }}" alt="{{ entry.title|raw }}" /></div>
201 {% endif %}
202
203 </aside> 203 </aside>
204 <article> 204 <article>
205 {{ entry.content | raw }} 205 {{ entry.content | raw }}