Merge branch 'bug_9473' into 3.12-master
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tags / list.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Tools &rsaquo; Tags &rsaquo; [% IF ( do_it ) %]Review &rsaquo; [% ELSE %]Review tags[% END %]</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 <link rel="stylesheet" type="text/css" href="/intranet-tmpl/prog/en/css/datatables.css" />
5 <script type="text/javascript" src="/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.dataTables.min.js"></script>
6 [% INCLUDE 'datatables-strings.inc' %]
7 <script type="text/javascript" src="/intranet-tmpl/prog/en/js/datatables.js"></script>
8 <script type="text/javascript">
9 //<![CDATA[
10     $(document).ready(function() {
11         $(".delete").click(function (event) {
12             $(this).parent().parent().parent().addClass("selected");
13             var answer = confirm(_("Are you sure you want to remove the tag from this title?"));
14                 if (!answer){
15                     $("tr").removeClass("selected");
16                     event.preventDefault();
17                 }
18         });
19         $("#itemst").dataTable($.extend(true, {}, dataTablesDefaults, {
20             "aoColumnDefs": [
21                 { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
22             ],
23             "aaSorting": [[ 0, "asc" ]],
24             "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
25             "iDisplayLength": 20,
26             "sPaginationType": "four_button"
27         }));
28     });
29 //]]>
30 </script>
31 <style type="text/css">
32 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : transparent; }</style>
33 </head>
34 <body id="tags_list" class="tools">
35 [% INCLUDE 'header.inc' %]
36 [% INCLUDE 'cat-search.inc' %]
37
38 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; <a href="/cgi-bin/koha/tags/review.pl">Tags</a> &rsaquo; Results for tag <i>[% tag %]</i></div>
39
40 <div id="doc3" class="yui-t2">
41  <div id="bd">
42   <div id="yui-main">
43   <div class="yui-b">
44 [% IF ( titles ) %]
45 <h3>Titles tagged with the term <i>[% tag %]</i></h3>
46 <table id="itemst">
47         <thead><tr>
48             <th>Title</th>
49             <th>Location</th>
50             <th>&nbsp;</th>
51         </tr></thead>
52
53         [% FOREACH title IN titles %]
54             [% IF ( title.even ) %]
55                 <tr class="highlight">
56             [% ELSE %]
57                 <tr>
58             [% END %]
59             <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = title.biblionumber %][% title.title |html %][% FOREACH subtitl IN title.subtitle %] [% subtitl.subfield %][% END %]</a>
60             [% title.author %]
61             <p>[% IF ( title.publishercode ) %]- [% title.publishercode|html %]
62             [% IF ( title.place ) %] [% title.place %][% END %][% END %]
63             [% IF ( title.pages ) %] - [% title.pages %][% IF ( title.size ) %] [% title.size %]
64             [% END %]
65             [% END %]</p>
66             [% IF ( title.notes ) %]
67             <p>[% title.notes |html%]</p>[% END %]
68             [% IF ( title.TagLoop ) %]<p style="font-size:90%"><strong>Tagged with:</strong> [% FOREACH TagLoo IN title.TagLoop %]
69             <a href="/cgi-bin/koha/tags/list.pl?tag=[% TagLoo.term %]">[% TagLoo.term |html %]</a> <span class="weight">([% TagLoo.weight_total %])</span>[% IF ( loop.last ) %][% ELSE %], [% END %]
70             [% END %]</p>
71             [% END %]
72             </td>
73             <td>[% IF ( title.items ) %]<ul style="font-size:80%">[% FOREACH item IN title.items %]
74                 <li>
75                     [% item.branchname %] [% item.location_description %]
76                     [% IF ( item.itemcallnumber ) %]
77                         ([% item.itemcallnumber %])
78                     [% END %]
79                 </li>
80                 [% END %]</ul>[% ELSE %]This record has no items.[% END %]
81              </td>
82              <td><form method="post" action="/cgi-bin/koha/tags/list.pl"><input type="hidden" name="op" value="del" /><input type="hidden" name="tag" value="[% tag %]" /><input type="hidden" name="tag_id" value="[% title.tag_id %]" /><input type="submit" class="delete" value="Remove tag" /></form></td>
83             </tr>
84         [% END %]
85     </table>
86 [% ELSE %]
87         <div class="dialog message">There are no titles tagged with the term <i>[% tag %]</i></div>
88 [% END %]
89 </form>
90  </div>
91  </div>
92  <div class="yui-b">
93   <ul>
94     <li><a href="/cgi-bin/koha/tags/review.pl?approved=1">Approved tags</a>
95     </li>
96     <li><a href="/cgi-bin/koha/tags/review.pl?approved=-1">Rejected tags</a>
97     </li>
98     <li><a href="/cgi-bin/koha/tags/review.pl?approved=0">Pending tags</a>
99     </li>
100     <li><a href="/cgi-bin/koha/tags/review.pl?approved=all">All tags</a>
101     </li>
102   </ul>
103  </div>
104 </div>
105 [% INCLUDE 'intranet-bottom.inc' %]