Bug 12740 - Data Validation followup
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / koha-news.tt
1 [% USE KohaDates %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Tools &rsaquo; News</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 [% INCLUDE 'calendar.inc' %]
6 [% IF ( opac_news_count ) %]
7     <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
8     [% INCLUDE 'datatables.inc' %]
9     <script type="text/javascript">//<![CDATA[
10     $(document).ready(function() {
11         $("#newst").dataTable($.extend(true, {}, dataTablesDefaults, {
12             "aoColumnDefs": [
13                 { "aTargets": [ 0,-1,-2 ], "bSortable": false },
14                 { "aTargets": [ 0, -1 ], "bSearchable": false },
15                 { 'sType': "title-string", 'aTargets' : [ 'title-string'] }
16             ],
17         }));
18     });
19     //]]>
20     </script>
21 [% END %]
22 <script language="javascript" type="text/javascript" src="[% interface %]/lib/tiny_mce/tiny_mce.js"></script>
23 <script type="text/javascript">//<![CDATA[
24 var MSG_CONFIRM_DELETE_NEWS  = _("Are you sure you want to delete the selected news?");
25
26 tinyMCE.init({
27     mode : "textareas",
28     theme : "advanced",
29     convert_urls : false,
30     relative_urls : false,
31     content_css : "[% themelang %]/css/tinymce.css",
32     plugins : "table,save,advhr,advlink,searchreplace,print,contextmenu",
33     theme_advanced_buttons1 : "save,|,bold,italic,|,cut,copy,paste,|,search,replace,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,|,link,unlink,anchor,cleanup,help,code,advhr,|,print",
34     theme_advanced_buttons2 : "tablecontrols,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,removeformat,|,visualaid,|,sub,sup,|,charmap",
35     theme_advanced_buttons3 : "",
36     theme_advanced_toolbar_location : "top",
37     theme_advanced_toolbar_align : "left",
38     theme_advanced_path_location : "bottom",
39     theme_advanced_resizing : true,
40     plugin_insertdate_dateFormat : "%Y-%m-%d",
41     plugin_insertdate_timeFormat : "%H:%M:%S",
42     apply_source_formatting : true,
43     height : "300",
44     width : "700"
45 //]]>
46 });
47 //]]>
48 </script>
49 </head>
50 <body id="tools_koha-news" class="tools">
51 [% INCLUDE 'header.inc' %]
52 [% INCLUDE 'cat-search.inc' %]
53
54 <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; [% IF ( add_form ) %]<a href="/cgi-bin/koha/tools/koha-news.pl">News</a> &rsaquo; [% IF ( id ) %]
55 Edit news item[% ELSE %]Add news item[% END %][% ELSE %]News[% END %]</div>
56
57 [% IF ( add_form ) %]<div id="doc" class="yui-t7">[% ELSE %]<div id="doc3" class="yui-t2">[% END %]
58    <div id="bd">
59         <div id="yui-main">
60         <div class="yui-b">
61
62 [% UNLESS ( add_form ) %]
63     [% IF (error_message) %]<p>[% error_message %]</p>[% END %]
64 <div id="toolbar" class="btn-toolbar">
65     <a class="btn btn-small" id="newentry" href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;lang=[% lang %]"><i class="icon-plus"></i> New entry</a>
66 </div>
67 [% END %]
68
69 [% IF ( add_form ) %]
70     [% IF ( op == 'add' ) %][% default_lang = lang %]
71     [% ELSE %][% default_lang = new_detail.lang %]
72     [% END %]
73         <form name="add_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl" >
74             <input type="hidden" name="op" value="[% op %]" />
75             <input type="hidden" name="id" value="[% id %]" />
76                         <fieldset class="rows">
77             <legend>OPAC and Koha news</legend>
78            <ol> <li>
79             <label for="lang">Display location</label>
80             <select id="lang" name="lang">
81                 [% IF ( default_lang == "" ) %]
82                 <option value="" selected="selected">All</option>
83                 [% ELSE %]
84                 <option value=""                    >All</option>
85                 [% END %]
86                 [% IF ( default_lang == "koha" ) %]
87                 <option value="koha" selected="selected">Librarian interface</option>
88                 [% ELSE %]
89                 <option value="koha"                    >Librarian interface</option>
90                 [% END %]
91                 [% IF ( default_lang == "slip" ) %]
92                 <option value="slip" selected="selected">Slip</option>
93                 [% ELSE %]
94                 <option value="slip"                    >Slip</option>
95                 [% END %]
96                 [% FOREACH lang_lis IN lang_list %]
97                 [% IF ( lang_lis.language == default_lang ) %]
98                     <option value="[% lang_lis.language %]" selected="selected">OPAC ([% lang_lis.language %])</option>
99                 [% ELSE %]
100                     <option value="[% lang_lis.language %]"                    >OPAC ([% lang_lis.language %])</option>
101                 [% END %]
102                 [% END %]
103             </select>
104             </li>
105             <li>
106                 <label for="branch">Library: </label>
107                 <select id="branch" name="branch">
108                 [% IF ( new_detail.branchcode == '' ) %]
109                     <option value="" selected="selected">All libraries</option>
110                 [% ELSE %]
111                     <option value=""         >All libraries</option>
112                 [% END %]
113                 [% FOREACH branch_item IN branch_list %]
114                 [% IF ( branch_item.value.branchcode == new_detail.branchcode ) %]
115                     <option value="[% branch_item.value.branchcode %]" selected="selected">[% branch_item.value.branchname %]</option>
116                 [% ELSE %]
117                     <option value="[% branch_item.value.branchcode %]">[% branch_item.value.branchname %]</option>
118                 [% END %]
119                 [% END %]
120                 </select>
121             </li>
122             <li>
123                 <label for="title" class="required">Title: </label>
124                 <input id="title" size="30" type="text" name="title" value="[% new_detail.title %]" required="required" class="required" /> <span class="required">Required</span>
125             </li>
126             <li>
127                 <label for="from">Publication date: </label>
128                 <input id="from" type="text" name="timestamp" size="15" value="[% new_detail.timestamp %]" class="datepickerfrom" />
129                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
130             </li>
131             <li>
132                 <label for="to">Expiration date: </label>
133                 <input id="to" type="text" name="expirationdate" size="15" value="[% new_detail.expirationdate %]" class="datepickerto" />
134                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
135             </li>
136             <li>
137                 <label for="number">Appear in position: </label>
138                 [% IF ( new_detail.number ) %]
139                     <input id="number" size="3" name="number" type="text" checked="checked" value="[% new_detail.number %]" />
140                 [% ELSE %]
141                     <input id="number" size="3" name="number" type="text" />
142                 [% END %]
143             </li>
144             <li><label for="new">News: </label>
145             <textarea name="new" id="new"  cols="75" rows="10">[% new_detail.new %]</textarea>
146             </li>
147             </ol>
148                         </fieldset>
149   
150                 <fieldset class="action"><input class="button" type="submit" value="Submit" /> <a class="cancel" href="/cgi-bin/koha/tools/koha-news.pl">Cancel</a></fieldset>
151         </form>
152     [% ELSE %]
153         <div style="margin-bottom:5px;">
154         <form name="add_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl" >
155             <label for="lang">Display location:</label>
156             <select name="lang" id="lang">
157             [% IF ( lang == "" ) %]
158             <option value=""     selected="selected">All</option>
159             [% ELSE %]
160             <option value=""             >All</option>
161             [% END %]
162             [% IF ( lang == "koha" ) %]
163             <option value="koha" selected="selected">Librarian interface</option>
164             [% ELSE %]
165             <option value="koha"         >Librarian interface</option>
166             [% END %]
167             [% IF ( lang == "slip" ) %]
168             <option value="slip" selected="selected">Slip</option>
169             [% ELSE %]
170             <option value="slip"         >Slip</option>
171             [% END %]
172                 [% FOREACH lang_lis IN lang_list %]
173                 [% IF ( lang_lis.language == lang ) %]
174                     <option value="[% lang_lis.language %]" selected="selected">OPAC ([% lang_lis.language %])</option>
175                 [% ELSE %]
176                     <option value="[% lang_lis.language %]"         >OPAC ([% lang_lis.language %])</option>
177                 [% END %]
178                 [% END %]
179             </select>
180             <label for="branch">Library: </label>
181             <select id="branch" name="branch">
182                 [% IF ( branchcode == "" ) %]
183                 <option value="" selected="selected">All libraries</option>
184                 [% ELSE %]
185                 <option value=""         >All libraries</option>
186                 [% END %]
187                 [% FOREACH branch_item IN branch_list %]
188                 [% IF ( branch_item.value.branchcode == branchcode ) %]
189                     <option value="[% branch_item.value.branchcode %]"
190                             selected="selected">[% branch_item.value.branchname %]
191                     </option>
192                 [% ELSE %]
193                     <option value="[% branch_item.value.branchcode %]"
194                                     >[% branch_item.value.branchname %]
195                     </option>
196                 [% END %]
197                 [% END %]
198             </select>
199             <input type="submit" class="button" value="Filter" />
200         </form>
201         </div>
202         [% IF ( opac_news_count ) %]
203         <form name="del_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl" onsubmit='return confirm(MSG_CONFIRM_DELETE_NEWS)'>
204                 <table id="newst">
205                    <thead> <tr>
206                         <th>&nbsp;</th>
207                         <th>Location</th>
208                         <th>Library</th>
209                         <th>Number</th>
210                         <th class="title-string">Creation date</th>
211                         <th class="title-string">Expiration date</th>
212                         <th>Title</th>
213                         <th>News</th>
214                         <th>&nbsp;</th>
215                     </tr></thead>
216                     <tbody>[% FOREACH opac_new IN opac_news %]
217                          [% IF ( opac_new.expired ) %]
218                             <tr class="expired">
219                             [% ELSE %]
220                             <tr>
221                             [% END %]
222                             <td>
223                                 <input type="checkbox" name="ids" value="[% opac_new.idnew %]" />
224                             </td>
225                             <td>[% SWITCH opac_new.lang %]
226                                 [%   CASE "koha" %]
227                                     Librarian interface
228                                 [%   CASE "slip" %]
229                                     Slip
230                                 [%   CASE "" %]
231                                     All
232                                 [%   CASE %]
233                                     OPAC ([% opac_new.lang %])
234                                 [% END %]
235                              </td>
236                             <td>[% IF ( opac_new.branchcode == "" ) -%]
237                                 All libraries
238                                 [% ELSE %][% opac_new.branchname %]
239                                 [% END %]</td>
240                             <td>[% opac_new.number %]</td>
241                             <td><span title="[% opac_new.newdate %]">[% opac_new.newdate | $KohaDates %]</span></td>
242                             <td><span title="[% opac_new.expirationdate %]">[% opac_new.expirationdate | $KohaDates %] [% IF ( opac_new.expired ) %](<span class="expired">expired</span>)[% END %]</span></td>
243                             <td>[% opac_new.title %]</td>
244                            <td>
245                                 [% opac_new.new %]
246                             </td>
247                             <td><a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;id=[% opac_new.idnew %]">Edit</a></td>
248                         </tr>
249                     [% END %]</tbody>
250                 </table>
251                 <input type="hidden" name="op" value="del" />
252                 <fieldset class="action"><input type="submit" class="button" value="Delete selected" /></fieldset>
253             </form>
254         [% ELSE %]
255             <p>No news loaded</p>
256         [% END %]
257     [% END %]
258 </div>
259 </div>
260 [% UNLESS ( add_form ) %]
261     <div class="yui-b noprint">
262         [% INCLUDE 'tools-menu.inc' %]
263     </div>
264 [% END %]
265 </div>
266 [% INCLUDE 'intranet-bottom.inc' %]