|
2
|
1 |
{# partial display document's tags (table only) #} |
|
|
2 |
<table id="wikitag_table"> |
|
|
3 |
<tr class="nodrop nodrag"> |
|
46
|
4 |
{% if columns is null or "order" in columns %} |
|
2
|
5 |
<th>#</th> |
|
46
|
6 |
{% endif %} |
|
|
7 |
{% if columns is null or "move_up_down" in columns %} |
|
2
|
8 |
<th><img src="{{ asset('bundles/wikitag/images/arrow_up_down.png') }}"/></th> |
|
46
|
9 |
{% endif %} |
|
|
10 |
{% if columns is null or "id" in columns %} |
|
2
|
11 |
<th>id</th> |
|
46
|
12 |
{% endif %} |
|
|
13 |
{% if columns is null or "label" in columns %} |
|
2
|
14 |
<th>label</th> |
|
46
|
15 |
{% endif %} |
|
|
16 |
{% if columns is null or "wikipedia_link" in columns %} |
|
2
|
17 |
<th class="wikitag_text_centered">Lien W</th> |
|
46
|
18 |
{% endif %} |
|
|
19 |
{% if columns is null or "wikipedia_permalink" in columns %} |
|
2
|
20 |
<th class="wikitag_text_centered">pLien W</th> |
|
46
|
21 |
{% endif %} |
|
|
22 |
{% if columns is null or "dbpedia_link" in columns %} |
|
2
|
23 |
<th class="wikitag_text_centered">Lien D</th> |
|
46
|
24 |
{% endif %} |
|
|
25 |
{% if columns is null or "category" in columns %} |
|
2
|
26 |
<th>Catégorie</th> |
|
46
|
27 |
{% endif %} |
|
|
28 |
{% if columns is null or "remove_wikipedia_link" in columns %} |
|
2
|
29 |
<th class="wikitag_large_25 wikitag_text_centered">Supprimer<br/>le lien W</th> |
|
46
|
30 |
{% endif %} |
|
|
31 |
{% if columns is null or "alias" in columns %} |
|
2
|
32 |
<th>Alias</th> |
|
46
|
33 |
{% endif %} |
|
|
34 |
{% if columns is null or "remove_tag_from_list" in columns %} |
|
2
|
35 |
<th class="wikitag_large_25 wikitag_text_centered">Retirer le tag</th></tr> |
|
46
|
36 |
{% endif %} |
|
2
|
37 |
{% for t in ordered_tags %} |
|
|
38 |
<tr class="imageline {{ cycle(['wikitag_oddline', 'wikitag_evenline'], loop.index) }}" id="{{loop.index}}"> |
|
46
|
39 |
{% if columns is null or "order" in columns %} |
|
2
|
40 |
<td>{{loop.index}}</td> |
|
51
|
41 |
{% endif %} |
|
46
|
42 |
{% if columns is null or "move_up_down" in columns %} |
|
2
|
43 |
<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> |
|
51
|
44 |
{% endif %} |
|
46
|
45 |
{% if columns is null or "id" in columns %} |
|
8
|
46 |
<td>{{t.tag.id}}</td> |
|
51
|
47 |
{% endif %} |
|
46
|
48 |
{% if columns is null or "label" in columns %} |
|
2
|
49 |
<td class="wikitag_{{t.tag.urlstatustext}} wikipediatag" id="{{t.tag.id}}" >{{t.tag.label}}</td> |
|
51
|
50 |
{% endif %} |
|
46
|
51 |
{% if columns is null or "wikipedia_link" in columns %} |
|
2
|
52 |
<td class="wikitag_text_centered"> |
|
|
53 |
{% if t.tag.wikipediaurl and t.tag.wikipediaurl != "" %} |
|
|
54 |
<a href="{{t.tag.wikipediaurl}}" target="_blank"><img src="{{ asset('bundles/wikitag/images/arrow_right.png') }}" ></a> |
|
|
55 |
{% else %} |
|
|
56 |
<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> |
|
|
57 |
{% endif %} |
|
|
58 |
</td> |
|
51
|
59 |
{% endif %} |
|
46
|
60 |
{% if columns is null or "wikipedia_permalink" in columns %} |
|
2
|
61 |
<td class="wikitag_text_centered"> |
|
|
62 |
{% if t.wikipediarevisionid %} |
|
|
63 |
<a href="{{t.wikipediaversionpermalink}}" target="_blank"><img src="{{ asset('bundles/wikitag/images/clock_arrow.png') }}" ></a> |
|
|
64 |
{% else %} |
|
|
65 |
|
|
|
66 |
{% endif %} |
|
|
67 |
</td> |
|
51
|
68 |
{% endif %} |
|
46
|
69 |
{% if columns is null or "dbpedia_link" in columns %} |
|
2
|
70 |
<td class="wikitag_text_centered"> |
|
|
71 |
{% if t.tag.dbpediauri and t.tag.dbpediauri != "" %} |
|
|
72 |
<a href="{{t.tag.dbpediauri}}" target="_blank"><img src="{{ asset('bundles/wikitag/images/arrow_green_right.png') }}" ></a> |
|
|
73 |
{% else %} |
|
|
74 |
|
|
|
75 |
{% endif %} |
|
|
76 |
</td> |
|
51
|
77 |
{% endif %} |
|
46
|
78 |
{% if columns is null or "category" in columns %} |
|
2
|
79 |
<td class="wikitag_category" id="{{t.tag.id}}">{% if t.tag.category %}{{ t.tag.category.label }}{% endif %}</td> |
|
51
|
80 |
{% endif %} |
|
46
|
81 |
{% if columns is null or "remove_wikipedia_link" in columns %} |
|
2
|
82 |
<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> |
|
51
|
83 |
{% endif %} |
|
46
|
84 |
{% if columns is null or "alias" in columns %} |
|
2
|
85 |
<td>{% if t.tag.alias %}{{t.tag.alias}}{% endif %}</td> |
|
51
|
86 |
{% endif %} |
|
46
|
87 |
{% if columns is null or "remove_tag_from_list" in columns %} |
|
2
|
88 |
<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> |
|
51
|
89 |
{% endif %} |
|
2
|
90 |
{% endfor %} |
|
|
91 |
</table> |