|
2
|
1 |
{# partial display document's tags (table only) #} |
|
|
2 |
<table id="wikitag_table"> |
|
|
3 |
<tr class="nodrop nodrag"> |
|
|
4 |
<th>#</th> |
|
|
5 |
<th><img src="{{ asset('bundles/wikitag/images/arrow_up_down.png') }}"/></th> |
|
|
6 |
<th>id</th> |
|
|
7 |
<th>label</th> |
|
|
8 |
<th class="wikitag_text_centered">Lien W</th> |
|
|
9 |
<th class="wikitag_text_centered">pLien W</th> |
|
|
10 |
<th class="wikitag_text_centered">Lien D</th> |
|
|
11 |
<th>Catégorie</th> |
|
|
12 |
<th class="wikitag_large_25 wikitag_text_centered">Supprimer<br/>le lien W</th> |
|
|
13 |
<th>Alias</th> |
|
|
14 |
<th class="wikitag_large_25 wikitag_text_centered">Retirer le tag</th></tr> |
|
|
15 |
{% for t in ordered_tags %} |
|
|
16 |
<tr class="imageline {{ cycle(['wikitag_oddline', 'wikitag_evenline'], loop.index) }}" id="{{loop.index}}"> |
|
|
17 |
<td>{{loop.index}}</td> |
|
|
18 |
<td class="wikitag_updown_td wikitag_text_centered"><img src="{{ asset('bundles/wikitag/images/arrow_up_down.png') }}" class="updown" alt="updown" id={{t.tag.id}} pos="{{loop.index0}}"></td> |
|
8
|
19 |
<td>{{t.tag.id}}</td> |
|
2
|
20 |
<td class="wikitag_{{t.tag.urlstatustext}} wikipediatag" id="{{t.tag.id}}" >{{t.tag.label}}</td> |
|
|
21 |
<td class="wikitag_text_centered"> |
|
|
22 |
{% if t.tag.wikipediaurl and t.tag.wikipediaurl != "" %} |
|
|
23 |
<a href="{{t.tag.wikipediaurl}}" target="_blank"><img src="{{ asset('bundles/wikitag/images/arrow_right.png') }}" ></a> |
|
|
24 |
{% else %} |
|
|
25 |
<a href="http://fr.wikipedia.org/w/index.php?search={{t.tag.label}}" target="_blank"><img src="{{ asset('bundles/wikitag/images/wikipedia_search.png') }}" ></a> |
|
|
26 |
{% endif %} |
|
|
27 |
</td> |
|
|
28 |
<td class="wikitag_text_centered"> |
|
|
29 |
{% if t.wikipediarevisionid %} |
|
|
30 |
<a href="{{t.wikipediaversionpermalink}}" target="_blank"><img src="{{ asset('bundles/wikitag/images/clock_arrow.png') }}" ></a> |
|
|
31 |
{% else %} |
|
|
32 |
|
|
|
33 |
{% endif %} |
|
|
34 |
</td> |
|
|
35 |
<td class="wikitag_text_centered"> |
|
|
36 |
{% if t.tag.dbpediauri and t.tag.dbpediauri != "" %} |
|
|
37 |
<a href="{{t.tag.dbpediauri}}" target="_blank"><img src="{{ asset('bundles/wikitag/images/arrow_green_right.png') }}" ></a> |
|
|
38 |
{% else %} |
|
|
39 |
|
|
|
40 |
{% endif %} |
|
|
41 |
</td> |
|
|
42 |
<td class="wikitag_category" id="{{t.tag.id}}">{% if t.tag.category %}{{ t.tag.category.label }}{% endif %}</td> |
|
|
43 |
<td class="wikitag_text_centered"><img src="{{ asset('bundles/wikitag/images/red_cross.png') }}" class="wikitag_remove_wp_link" id="{{t.tag.id}}" alt="{{t.tag.label}}" /></td> |
|
|
44 |
<td>{% if t.tag.alias %}{{t.tag.alias}}{% endif %}</td> |
|
|
45 |
<td class="wikitag_text_centered"><img src="{{ asset('bundles/wikitag/images/tag_remove.png') }}" class="wikitag_remove_tag_from_list" id="{{t.tag.id}}" alt="{{t.tag.label}}" /></td></tr> |
|
|
46 |
{% endfor %} |
|
|
47 |
</table> |