[TWIG] Improving view template structure
This commit is contained in:
parent
099c4220d2
commit
a69c9a4f25
@ -10,11 +10,21 @@
|
|||||||
<div class="note-attachments">
|
<div class="note-attachments">
|
||||||
{% for attachment in note.getAttachments() %}
|
{% for attachment in note.getAttachments() %}
|
||||||
{% if attachment.mimetype starts with 'image/' %}
|
{% if attachment.mimetype starts with 'image/' %}
|
||||||
<img src="{{ path('attachment_inline', {'id': attachment.getId()}) }}"> {{ attachment.getTitle() }} </img>
|
<div>
|
||||||
|
<img src="{{ path('attachment_inline', {'id': attachment.getId()}) }}" alt="{{ attachment.getTitle() }}">
|
||||||
|
<i> {{ attachment.getTitle() }} </i>
|
||||||
|
</img>
|
||||||
|
</div>
|
||||||
{% elseif attachment.mimetype starts with 'video/' %}
|
{% elseif attachment.mimetype starts with 'video/' %}
|
||||||
<video src="{{ path('attachment_inline', {'id': attachment.getId()}) }}"> {{ attachment.getTitle() }} </img>
|
<div>
|
||||||
|
<video src="{{ path('attachment_inline', {'id': attachment.getId()}) }}">
|
||||||
|
<i> {{ attachment.getTitle() }} </i>
|
||||||
|
</video>
|
||||||
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
<i> {{ attachment.getTitle() }} </i>
|
<div>
|
||||||
|
<i> {{ attachment.getTitle() }} </i>
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user