Merge commit 'biblibre/3.2_community' into to-push
[koha.git] / koha-tmpl / opac-tmpl / prog / en / modules / opac-suggestions.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" --><!-- TMPL_IF NAME="LibraryNameTitle" --><!-- TMPL_VAR NAME="LibraryNameTitle" --><!-- TMPL_ELSE -->Koha Online<!-- /TMPL_IF --> Catalog &rsaquo;  
2 <!-- TMPL_IF name="op_add" -->Enter a new purchase suggestion<!-- /TMPL_IF -->
3 <!-- TMPL_IF name="op_else" -->Purchase Suggestions<!-- /TMPL_IF -->
4 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
5 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
6 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
7 <script type="text/JavaScript" language="JavaScript">
8 //<![CDATA[
9 $.tablesorter.addParser({
10     id: 'articles', 
11     is: function(s) {return false;  }, 
12     format: function(s) { return s.toLowerCase().replace(/^(the|an|a) /,''); }, 
13     type: 'text' 
14 });
15
16        $(function() {
17                         $("#suggestt").tablesorter({
18                                 widgets : ['zebra'],
19                                 <!-- TMPL_IF NAME="loggedinusername" -->sortList: [[1,0]],<!-- TMPL_ELSE -->sortList: [[0,0]],<!-- /TMPL_IF -->
20                         headers: {
21                                 <!-- TMPL_IF NAME="loggedinusername" -->
22                                         <!-- TMPL_IF NAME="OPACViewOthersSuggestions" -->
23                                         0: { sorter: false },2: { sorter: 'articles' },2: {sorter: false },4: {sorter: false},5:{sorter:false}
24                                         <!-- TMPL_ELSE -->
25                                         0: { sorter: false },2: { sorter: 'articles' },2: {sorter: false },3: {sorter: false},4:{sorter:false}
26                                         <!-- /TMPL_IF -->
27                                 <!-- TMPL_ELSE -->
28                                 <!-- TMPL_IF NAME="OPACViewOthersSuggestions" -->
29                                         0: { sorter: 'articles' },1: {sorter: false },3: {sorter: false},4:{sorter:false}
30                                         <!-- TMPL_ELSE -->
31                                         0: { sorter: 'articles' },1: {sorter: false },2: {sorter: false},3:{sorter:false}
32                                         <!-- /TMPL_IF -->
33                                 <!-- /TMPL_IF -->
34                                 }
35                         }); 
36                         $("#CheckAll").click(function(){
37                         $(".checkboxed").checkCheckboxes();
38                         return false;
39                     });
40                     $("#CheckNone").click(function(){
41                         $(".checkboxed").unCheckCheckboxes();
42                         return false;
43                     }); 
44        });
45         
46       function Check(f) {
47                 var _alertString="";
48                 var alertString2;
49
50             if(f.title.value.length ==0){
51                         _alertString += _("- You must enter a Title\n");
52                 }
53
54                 if (_alertString.length==0) {
55                         document.Aform.submit();
56                 } else {
57                         alertString2 = _("Form not submitted because of the following problem(s)\n");
58                         alertString2 += "------------------------------------------------------------------------------------\n\n";
59                         alertString2 += _alertString;
60                         alert(alertString2);
61                 }
62         }
63 //]]>
64 </script>
65 </head>
66 <!-- TMPL_IF NAME="loggedinusername" --><body id="opac-usersuggestions"><!-- TMPL_ELSE --><body id="opac-suggestions"><!-- /TMPL_IF -->
67 <!-- TMPL_INCLUDE name="masthead.inc" -->
68
69 <div id="doc3" class="yui-t1">
70    <div id="bd">
71         <div id="yui-main">
72         <div class="yui-b"><div class="yui-g">
73 <div class="container">
74 <!-- TMPL_IF name="op_add" -->
75     <h1>Enter a new purchase suggestion</h1>
76
77     <p>Please fill out this form to make a purchase suggestion. You will receive an email when the library processes your suggestion</p>
78     <p>Only the title is required, but the more information you enter the easier it will be for the librarians to find title you're requesting. The "Notes" field can be used to provide any additional information.</p>
79     <form action="/cgi-bin/koha/opac-suggestions.pl" method="post">
80    <fieldset class="rows"> <ol>
81     <li><label class="required" for="title">Title:</label><input type="text" id="title" name="title" size="50" maxlength="80" /></li>
82     <li><label for="author">Author:</label><input type="text" id="author" name="author" size="50" maxlength="80" /></li>
83     <li><label for="copyrightdate">Copyright Date:</label><input type="text" id="copyrightdate" name="copyrightdate" size="4" maxlength="4" /></li>
84     <li><label for="isbn">Standard Number (ISBN, ISSN or Other):</label><input type="text" id="isbn" name="isbn" size="50" maxlength="80" /></li>
85     <li><label for="publishercode">Publisher:</label><input type="text" id="publishercode" name="publishercode" size="50" maxlength="80" /></li>
86     <li><label for="collectiontitle">Collection Title:</label><input type="text" id="collectiontitle" name="collectiontitle" size="50" maxlength="80" /></li>
87     <li><label for="place">Publication Place:</label><input type="text" id="place" name="place" size="50" maxlength="80" /></li>
88     <li><label for="itemtype">Item Type:</label><select name="itemtype" >
89             <option value="">Default</option>
90         <!-- TMPL_LOOP name="itemtypeloop" -->
91                         <!-- TMPL_IF name="selected" --><option value="<!-- TMPL_VAR name="itemtype"-->" selected="selected"> <!--TMPL_ELSE--><option value="<!-- TMPL_VAR name="itemtype" -->"> <!--/TMPL_IF--> <!--TMPL_IF Name="imageurl"--><img alt="<!-- TMPL_VAR name="description" -->" src="<!--TMPL_VAR Name="imageurl"-->" /><!-- TMPL_VAR name="description" --><!--TMPL_ELSE--><!-- TMPL_VAR name="description" --><!--/TMPL_IF--></option>
92         <!-- /TMPL_LOOP -->
93         </select> </li>
94     <li><label for="note">Notes:</label><textarea name="note" id="note" rows="5" cols="40"></textarea></li>
95     </ol></fieldset>
96         <fieldset class="action"><input type="hidden" name="suggestedby" value="<!--TMPL_VAR Name="suggestedbyme"-->" /><input type="hidden" name="op" value="add_confirm" /><input type="submit" onclick="Check(this.form); return false;" value="Submit Your Suggestion" /> <a class="action" href="/cgi-bin/koha/opac-suggestions.pl">Cancel</a></fieldset>
97     </form>
98
99 <!-- /TMPL_IF -->
100
101 <!-- TMPL_IF name="op_else" -->
102     <h1><!-- TMPL_UNLESS NAME="OPACViewOthersSuggestions" --><!-- TMPL_IF NAME="loggedinusername" -->My <!-- /TMPL_IF --><!-- /TMPL_UNLESS -->Purchase Suggestions</h1>
103     <!-- TMPL_IF NAME="suggestions_loop" -->
104     <!-- TMPL_IF NAME="OPACViewOthersSuggestions" -->
105         <form action="/cgi-bin/koha/opac-suggestions.pl" method="get">
106     <table>
107         <tr>
108                 <th>
109                     Search for:
110                 </th>
111                 <td>
112                     <input type="text" name="title" value="<!-- TMPL_VAR name="title"-->" />
113                 </td>
114                 <th>
115                 Suggested by:
116                 </th>
117                 <td>
118                     <select name="suggestedby">
119                         <option value="0">Anyone</option>
120                         <option value="1">Me</option>
121                     </select>
122                 </td>
123                 <th>
124                     <input type="submit" value="Search" />
125                 </th>
126         </tr>
127                 </table>
128             </form><!-- /TMPL_IF -->
129         <form action="/cgi-bin/koha/opac-suggestions.pl" method="post">
130             <input type="hidden" name="op" value="delete_confirm" />
131                         <div><span class="checkall"><a href="#" id="CheckAll">Select All</a></span>
132                 <span class="clearall"><a href="#" id="CheckNone">Clear All</a></span> | <!-- TMPL_IF NAME="loggedinusername" --><a class="new" href="/cgi-bin/koha/opac-suggestions.pl?op=add">New purchase suggestion</a><!-- TMPL_ELSE --><!-- TMPL_IF NAME="AnonSuggestions" --><a class="new" href="/cgi-bin/koha/opac-suggestions.pl?op=add">New purchase suggestion</a><!-- /TMPL_IF --><!-- /TMPL_IF -->
133 </div>
134                         <table id="suggestt" class="checkboxed">
135                         <thead><tr>
136             <!-- TMPL_IF NAME="loggedinusername" --><th>&nbsp;</th><!-- /TMPL_IF -->
137             <th>Summary</th>
138             <th>Note</th>
139             <!-- TMPL_IF NAME="OPACViewOthersSuggestions" --><th>Suggested For</th><!-- /TMPL_IF -->
140             <th>Managed by</th>
141             <th>Status</th>
142         </tr></thead>
143         <tbody><!-- TMPL_LOOP NAME="suggestions_loop" -->
144             <!-- TMPL_IF name="even" --><tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
145 <!-- TMPL_IF NAME="loggedinusername" --><td>
146     <!-- TMPL_IF NAME="showcheckbox" -->
147                     <input type="checkbox" name="delete_field" value="<!--TMPL_VAR name="suggestionid" -->" />
148     <!-- /TMPL_IF -->
149                 </td><!-- /TMPL_IF -->
150                 <td>
151                     <p><strong><!-- TMPL_VAR NAME="title" escape="html" --></strong></p>
152                     <p><!-- TMPL_IF name="author" --><!-- TMPL_VAR NAME="author" -->,<!-- /TMPL_IF -->
153                         <!-- TMPL_IF name="copyrightdate" --> - <!-- TMPL_VAR NAME="copyrightdate" -->,<!-- /TMPL_IF --> 
154                         <!-- TMPL_IF name="publishercode" --> - <!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF -->
155                         <!-- TMPL_IF name="place" -->(<!-- TMPL_VAR name="place" -->)<!-- /TMPL_IF -->
156                         <!-- TMPL_IF name="collectiontitle" --> , <!-- TMPL_VAR name="collectiontitle" --><!-- /TMPL_IF -->
157                         <!-- TMPL_IF name="itemtype" --> - <!-- TMPL_VAR name="itemtype" --><!-- /TMPL_IF -->
158                     </p>
159                 </td>
160                 <td>
161                     <!-- TMPL_VAR name="note" -->
162                 </td>
163                 <!-- TMPL_IF NAME="OPACViewOthersSuggestions" --><td>
164                     <!-- TMPL_IF NAME="branchcodesuggestedby" --><!-- TMPL_VAR name="branchcodesuggestedby" --><!-- TMPL_ELSE -->&nbsp;<!-- /TMPL_IF -->
165                 </td><!-- /TMPL_IF -->
166                 <td>
167                                         <!-- TMPL_IF NAME="surnamemanagedby" --><!-- TMPL_VAR name="surnamemanagedby" --><!-- TMPL_IF name="firstnamemanagedby" -->,<!-- /TMPL_IF --> <!-- TMPL_VAR name="firstnamemanagedby" --><!-- TMPL_ELSE -->&nbsp;<!-- /TMPL_IF -->
168                 </td>
169                 <td>
170                     <!-- TMPL_IF name="ASKED" -->Requested<!-- /TMPL_IF -->
171                     <!-- TMPL_IF name="CHECKED" -->Checked by the library<!-- /TMPL_IF -->
172                     <!-- TMPL_IF name="ACCEPTED" -->Accepted by the library<!-- /TMPL_IF -->
173                     <!-- TMPL_IF name="ORDERED" -->Ordered by the library<!-- /TMPL_IF -->
174                     <!-- TMPL_IF name="REJECTED" -->Suggestion declined <!-- /TMPL_IF -->
175                     <!-- TMPL_IF name="AVAILABLE" -->Available in the library<!-- /TMPL_IF -->
176                     <!-- TMPL_IF name="reason" -->(<!-- TMPL_VAR name="reason" -->)<!-- /TMPL_IF -->
177                 </td>
178             </tr>
179         <!-- /TMPL_LOOP -->
180        </tbody>
181     </table> <!-- TMPL_IF NAME="loggedinusername" --><fieldset class="action">
182                 <input type="submit" value="Delete Checked Items" />
183             </fieldset>
184         <!-- /TMPL_IF -->
185         </form>
186     <!-- TMPL_ELSE --><p>There are no pending purchase suggestions.</p> <!-- TMPL_IF NAME="loggedinusername" --><p><a class="new" href="/cgi-bin/koha/opac-suggestions.pl?op=add">New purchase suggestion</a></p><!-- TMPL_ELSE --><!-- TMPL_IF NAME="AnonSuggestions" --><p><a class="new" href="/cgi-bin/koha/opac-suggestions.pl?op=add">New purchase suggestion</a></p><!-- /TMPL_IF --><!-- /TMPL_IF --><!-- /TMPL_IF -->
187         
188 <!-- /TMPL_IF -->
189 </div>
190 </div>
191 </div>
192 </div>
193 <div class="yui-b">
194 <div class="container">
195 <!--TMPL_INCLUDE NAME="navigation.inc" -->
196 <!-- TMPL_INCLUDE name="usermenu.inc" -->
197 </div>
198 </div>
199 </div>
200 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->