Bug 12740 - It should not be possible to store empty news
[koha-ffzg.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 <div id="toolbar" class="btn-toolbar">
64     <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>
65 </div>
66 [% END %]
67
68 [% IF ( add_form ) %]
69     [% IF ( op == 'add' ) %][% default_lang = lang %]
70     [% ELSE %][% default_lang = new_detail.lang %]
71     [% END %]
72         <form name="add_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl" >
73             <input type="hidden" name="op" value="[% op %]" />
74             <input type="hidden" name="id" value="[% id %]" />
75                         <fieldset class="rows">
76             <legend>OPAC and Koha news</legend>
77            <ol> <li>
78             <label for="lang">Display location</label>
79             <select id="lang" name="lang">
80                 [% IF ( default_lang == "" ) %]
81                 <option value="" selected="selected">All</option>
82                 [% ELSE %]
83                 <option value=""                    >All</option>
84                 [% END %]
85                 [% IF ( default_lang == "koha" ) %]
86                 <option value="koha" selected="selected">Librarian interface</option>
87                 [% ELSE %]
88                 <option value="koha"                    >Librarian interface</option>
89                 [% END %]
90                 [% IF ( default_lang == "slip" ) %]
91                 <option value="slip" selected="selected">Slip</option>
92                 [% ELSE %]
93                 <option value="slip"                    >Slip</option>
94                 [% END %]
95                 [% FOREACH lang_lis IN lang_list %]
96                 [% IF ( lang_lis.language == default_lang ) %]
97                     <option value="[% lang_lis.language %]" selected="selected">OPAC ([% lang_lis.language %])</option>
98                 [% ELSE %]
99                     <option value="[% lang_lis.language %]"                    >OPAC ([% lang_lis.language %])</option>
100                 [% END %]
101                 [% END %]
102             </select>
103             </li>
104             <li>
105                 <label for="branch">Library: </label>
106                 <select id="branch" name="branch">
107                 [% IF ( new_detail.branchcode == '' ) %]
108                     <option value="" selected="selected">All libraries</option>
109                 [% ELSE %]
110                     <option value=""         >All libraries</option>
111                 [% END %]
112                 [% FOREACH branch_item IN branch_list %]
113                 [% IF ( branch_item.value.branchcode == new_detail.branchcode ) %]
114                     <option value="[% branch_item.value.branchcode %]" selected="selected">[% branch_item.value.branchname %]</option>
115                 [% ELSE %]
116                     <option value="[% branch_item.value.branchcode %]">[% branch_item.value.branchname %]</option>
117                 [% END %]
118                 [% END %]
119                 </select>
120             </li>
121             <li>
122                 <label for="title" class="required">Title: </label>
123                 <input id="title" size="30" type="text" name="title" value="[% new_detail.title %]" required="required" class="required" /> <span class="required">Required</span>
124             </li>
125             <li>
126                 <label for="from">Publication date: </label>
127                 <input id="from" type="text" name="timestamp" size="15" value="[% new_detail.timestamp %]" class="datepickerfrom" />
128                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
129             </li>
130             <li>
131                 <label for="to">Expiration date: </label>
132                 <input id="to" type="text" name="expirationdate" size="15" value="[% new_detail.expirationdate %]" class="datepickerto" />
133                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
134             </li>
135             <li>
136                 <label for="number">Appear in position: </label>
137                 [% IF ( new_detail.number ) %]
138                     <input id="number" size="3" name="number" type="text" checked="checked" value="[% new_detail.number %]" />
139                 [% ELSE %]
140                     <input id="number" size="3" name="number" type="text" />
141                 [% END %]
142             </li>
143             <li><label for="new">News: </label>
144             <textarea name="new" id="new"  cols="75" rows="10">[% new_detail.new %]</textarea>
145             </li>
146             </ol>
147                         </fieldset>
148   
149                 <fieldset class="action"><input class="button" type="submit" value="Submit" /> <a class="cancel" href="/cgi-bin/koha/tools/koha-news.pl">Cancel</a></fieldset>
150         </form>
151     [% ELSE %]
152         <div style="margin-bottom:5px;">
153         <form name="add_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl" >
154             <label for="lang">Display location:</label>
155             <select name="lang" id="lang">
156             [% IF ( lang == "" ) %]
157             <option value=""     selected="selected">All</option>
158             [% ELSE %]
159             <option value=""             >All</option>
160             [% END %]
161             [% IF ( lang == "koha" ) %]
162             <option value="koha" selected="selected">Librarian interface</option>
163             [% ELSE %]
164             <option value="koha"         >Librarian interface</option>
165             [% END %]
166             [% IF ( lang == "slip" ) %]
167             <option value="slip" selected="selected">Slip</option>
168             [% ELSE %]
169             <option value="slip"         >Slip</option>
170             [% END %]
171                 [% FOREACH lang_lis IN lang_list %]
172                 [% IF ( lang_lis.language == lang ) %]
173                     <option value="[% lang_lis.language %]" selected="selected">OPAC ([% lang_lis.language %])</option>
174                 [% ELSE %]
175                     <option value="[% lang_lis.language %]"         >OPAC ([% lang_lis.language %])</option>
176                 [% END %]
177                 [% END %]
178             </select>
179             <label for="branch">Library: </label>
180             <select id="branch" name="branch">
181                 [% IF ( branchcode == "" ) %]
182                 <option value="" selected="selected">All libraries</option>
183                 [% ELSE %]
184                 <option value=""         >All libraries</option>
185                 [% END %]
186                 [% FOREACH branch_item IN branch_list %]
187                 [% IF ( branch_item.value.branchcode == branchcode ) %]
188                     <option value="[% branch_item.value.branchcode %]"
189                             selected="selected">[% branch_item.value.branchname %]
190                     </option>
191                 [% ELSE %]
192                     <option value="[% branch_item.value.branchcode %]"
193                                     >[% branch_item.value.branchname %]
194                     </option>
195                 [% END %]
196                 [% END %]
197             </select>
198             <input type="submit" class="button" value="Filter" />
199         </form>
200         </div>
201         [% IF ( opac_news_count ) %]
202         <form name="del_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl" onsubmit='return confirm(MSG_CONFIRM_DELETE_NEWS)'>
203                 <table id="newst">
204                    <thead> <tr>
205                         <th>&nbsp;</th>
206                         <th>Location</th>
207                         <th>Library</th>
208                         <th>Number</th>
209                         <th class="title-string">Creation date</th>
210                         <th class="title-string">Expiration date</th>
211                         <th>Title</th>
212                         <th>News</th>
213                         <th>&nbsp;</th>
214                     </tr></thead>
215                     <tbody>[% FOREACH opac_new IN opac_news %]
216                          [% IF ( opac_new.expired ) %]
217                             <tr class="expired">
218                             [% ELSE %]
219                             <tr>
220                             [% END %]
221                             <td>
222                                 <input type="checkbox" name="ids" value="[% opac_new.idnew %]" />
223                             </td>
224                             <td>[% SWITCH opac_new.lang %]
225                                 [%   CASE "koha" %]
226                                     Librarian interface
227                                 [%   CASE "slip" %]
228                                     Slip
229                                 [%   CASE "" %]
230                                     All
231                                 [%   CASE %]
232                                     OPAC ([% opac_new.lang %])
233                                 [% END %]
234                              </td>
235                             <td>[% IF ( opac_new.branchcode == "" ) -%]
236                                 All libraries
237                                 [% ELSE %][% opac_new.branchname %]
238                                 [% END %]</td>
239                             <td>[% opac_new.number %]</td>
240                             <td><span title="[% opac_new.newdate %]">[% opac_new.newdate | $KohaDates %]</span></td>
241                             <td><span title="[% opac_new.expirationdate %]">[% opac_new.expirationdate | $KohaDates %] [% IF ( opac_new.expired ) %](<span class="expired">expired</span>)[% END %]</span></td>
242                             <td>[% opac_new.title %]</td>
243                            <td>
244                                 [% opac_new.new %]
245                             </td>
246                             <td><a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;id=[% opac_new.idnew %]">Edit</a></td>
247                         </tr>
248                     [% END %]</tbody>
249                 </table>
250                 <input type="hidden" name="op" value="del" />
251                 <fieldset class="action"><input type="submit" class="button" value="Delete selected" /></fieldset>
252             </form>
253         [% ELSE %]
254             <p>No news loaded</p>
255         [% END %]
256     [% END %]
257 </div>
258 </div>
259 [% UNLESS ( add_form ) %]
260     <div class="yui-b noprint">
261         [% INCLUDE 'tools-menu.inc' %]
262     </div>
263 [% END %]
264 </div>
265 [% INCLUDE 'intranet-bottom.inc' %]