|
@@ -16,6 +16,9 @@
|
16
|
16
|
{% if tag_ids_json is not defined %}
|
17
|
17
|
{% set tag_ids_json = '[]' %}
|
18
|
18
|
{% endif %}
|
|
19
|
+{% if display_tags_proposition is not defined %}
|
|
20
|
+ {% set display_tags_proposition = false %}
|
|
21
|
+{% endif %}
|
19
|
22
|
|
20
|
23
|
<table>
|
21
|
24
|
<tr>
|
|
@@ -169,7 +172,7 @@
|
169
|
172
|
<a title="{{ 'element.proposition_tags.link_title'|trans({}, 'userui') }}"
|
170
|
173
|
class="element_propose_tags"
|
171
|
174
|
href="{{ path('ajax_element_propose_tags_open', {'element_id' : element.id}) }}">
|
172
|
|
- <img src="{{ asset('bundles/muzichcore/img/1333484018_rss-tag.png') }}" alt="tags_proposition" />
|
|
175
|
+ <img src="{{ asset('img/tag.png') }}" alt="tags_proposition" />
|
173
|
176
|
</a>
|
174
|
177
|
</li>
|
175
|
178
|
|
|
@@ -202,7 +205,7 @@
|
202
|
205
|
<a title="{{ 'element.view_propositions.link'|trans({}, 'elements') }}" class="element_view_propositions_link"
|
203
|
206
|
href="{{ path('ajax_element_proposed_tags_view', {'element_id' : element.id}) }}"
|
204
|
207
|
>
|
205
|
|
- <img src="{{ asset('bundles/muzichcore/img/1333493527_tag_add.png') }}" alt="tags proposition" />
|
|
208
|
+ <img src="{{ asset('img/tag_color.png') }}" alt="tags proposition" />
|
206
|
209
|
</a>
|
207
|
210
|
</li>
|
208
|
211
|
{% endif %}
|
|
@@ -416,6 +419,13 @@
|
416
|
419
|
{% endif %}
|
417
|
420
|
{% endif %}
|
418
|
421
|
|
|
422
|
+{% if display_tags_proposition %}
|
|
423
|
+ {% include 'MuzichCoreBundle:Element:tag.propositions.html.twig' with {
|
|
424
|
+ 'propositions' : element.tagsProposition,
|
|
425
|
+ 'element_id' : element.id
|
|
426
|
+ } %}
|
|
427
|
+{% endif %}
|
|
428
|
+
|
419
|
429
|
{% if display_player %}
|
420
|
430
|
<div id="embed_{{ element.id }}" class="element_embed" style="display: none;"></div>
|
421
|
431
|
{% endif %}
|