Bug 16456: Add Font Awesome icons to some buttons in Tools module, section Patrons...
[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="[% interface %]/[% theme %]/css/datatables.css" />
5 [% INCLUDE 'datatables.inc' %]
6 <script type="text/javascript">
7 //<![CDATA[
8     $(document).ready(function() {
9         $(".delete").click(function (event) {
10             $(this).parent().parent().parent().addClass("selected");
11             var answer = confirm(_("Are you sure you want to remove the tag from this title?"));
12                 if (!answer){
13                     $("tr").removeClass("selected");
14                     event.preventDefault();
15                 }
16         });
17         $("#itemst").dataTable($.extend(true, {}, dataTablesDefaults, {
18             "aoColumnDefs": [
19                 { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
20             ],
21             "aaSorting": [[ 0, "asc" ]],
22             "sPaginationType": "four_button"
23         }));
24     });
25 //]]>
26 </script>
27 <style type="text/css">
28 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : transparent; }</style>
29 </head>
30 <body id="tags_list" class="tools">
31 [% INCLUDE 'header.inc' %]
32 [% INCLUDE 'cat-search.inc' %]
33
34 <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>
35
36 <div id="doc3" class="yui-t2">
37  <div id="bd">
38   <div id="yui-main">
39   <div class="yui-b">
40 [% IF ( titles ) %]
41 <h3>Titles tagged with the term <i>[% tag %]</i></h3>
42 <table id="itemst">
43         <thead><tr>
44             <th>Title</th>
45             <th>Location</th>
46             <th>&nbsp;</th>
47         </tr></thead>
48
49         [% FOREACH title IN titles %]
50             <tr>
51             <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = title.biblionumber %][% title.title |html %][% FOREACH subtitl IN title.subtitle %] [% subtitl.subfield %][% END %]</a>
52             [% title.author %]
53             <p>[% IF ( title.publishercode ) %]- [% title.publishercode|html %]
54             [% IF ( title.place ) %] [% title.place %][% END %][% END %]
55             [% IF ( title.pages ) %] - [% title.pages %][% IF ( title.size ) %] [% title.size %]
56             [% END %]
57             [% END %]</p>
58             [% IF ( title.notes ) %]
59             <p>[% title.notes |html%]</p>[% END %]
60             [% IF ( title.TagLoop ) %]<p style="font-size:90%"><strong>Tagged with:</strong> [% FOREACH TagLoo IN title.TagLoop %]
61             <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 %]
62             [% END %]</p>
63             [% END %]
64             </td>
65             <td>[% IF ( title.items ) %]<ul style="font-size:80%">[% FOREACH item IN title.items %]
66                 <li>
67                     [% item.branchname %] [% item.location_description %]
68                     [% IF ( item.itemcallnumber ) %]
69                         ([% item.itemcallnumber %])
70                     [% END %]
71                 </li>
72                 [% END %]</ul>[% ELSE %]This record has no items.[% END %]
73              </td>
74              <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 %]" /><button type="submit" class="delete btn btn-small"><i class="fa fa-trash"></i> Remove</button></form></td>
75             </tr>
76         [% END %]
77     </table>
78 [% ELSE %]
79         <div class="dialog message">There are no titles tagged with the term <i>[% tag %]</i></div>
80 [% END %]
81 </form>
82  </div>
83  </div>
84  <div class="yui-b">
85   <ul>
86     <li><a href="/cgi-bin/koha/tags/review.pl?approved=1">Approved tags</a>
87     </li>
88     <li><a href="/cgi-bin/koha/tags/review.pl?approved=-1">Rejected tags</a>
89     </li>
90     <li><a href="/cgi-bin/koha/tags/review.pl?approved=0">Pending tags</a>
91     </li>
92     <li><a href="/cgi-bin/koha/tags/review.pl?approved=all">All tags</a>
93     </li>
94   </ul>
95  </div>
96 </div>
97 [% INCLUDE 'intranet-bottom.inc' %]