aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-04-08 13:51:20 +0200
committerJeremy Benoist <j0k3r@users.noreply.github.com>2016-04-08 13:51:20 +0200
commite969c2a7efe1dd6c1dd13bd8726591f7163397d5 (patch)
tree0130097ce73752b08b8a0c3786adaf802503ba1a /src
parent5b732257db5349939268547b90d7631063cfa45b (diff)
parentc6cbe75b2ee29bf62ceb36de4d81bf64693c859f (diff)
downloadwallabag-e969c2a7efe1dd6c1dd13bd8726591f7163397d5.tar.gz
wallabag-e969c2a7efe1dd6c1dd13bd8726591f7163397d5.tar.zst
wallabag-e969c2a7efe1dd6c1dd13bd8726591f7163397d5.zip
Merge pull request #1879 from wallabag/v2-tag-field-position
Move tag form in Material theme
Diffstat (limited to 'src')
-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 }}