Bug 26602: Don't export "actions" column
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / koha-news.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE Branches %]
6 [% SET footerjs = 1 %]
7 [% INCLUDE 'doc-head-open.inc' %]
8 <title>Koha &rsaquo; Tools &rsaquo; News</title>
9 [% INCLUDE 'doc-head-close.inc' %]
10 [% IF ( opac_news_count ) %]
11 [% END %]
12 [% UNLESS ( wysiwyg ) %]
13     [% Asset.css("lib/codemirror/codemirror.css") | $raw %]
14     [% Asset.css("lib/codemirror/lint.min.css") | $raw %]
15     <style>
16         .CodeMirror {
17             resize: vertical;
18             z-index: 0;
19         }
20     </style>
21 [% END %]
22 </head>
23
24 <body id="tools_koha-news" class="tools">
25 [% INCLUDE 'header.inc' %]
26 [% INCLUDE 'cat-search.inc' %]
27
28 <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 ) %]
29 Edit news item[% ELSE %]Add news item[% END %][% ELSE %]News[% END %]</div>
30
31 [% IF ( add_form ) %]
32     <div class="main container-fluid">
33         <div class="row">
34             <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
35 [% ELSE %]
36     <div class="main container-fluid">
37         <div class="row">
38             <div class="col-sm-10 col-sm-push-2">
39 [% END %]
40                 <main>
41
42 [% UNLESS ( add_form ) %]
43     [% IF error_message == 'title_missing' %]
44         <div class="dialog alert">Error: Required news title missing!</div>
45     [% END %]
46 <h2>News</h2>
47 <div id="toolbar" class="btn-toolbar">
48     <a class="btn btn-default" id="newentry" href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;lang=[% lang | html %]"><i class="fa fa-plus"></i> New entry</a>
49 </div>
50 [% END %]
51
52 [% IF ( add_form ) %]
53     [% IF ( op == 'add' ) %]
54         [% default_lang = lang %]
55     [% ELSE %]
56         [% default_lang = new_detail.lang %]
57     [% END %]
58         <form name="add_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl" >
59             <input type="hidden" name="op" value="[% op | html %]" />
60             <input type="hidden" name="id" value="[% id | html %]" />
61                         <fieldset class="rows">
62             <legend>OPAC and Koha news</legend>
63            <ol> <li>
64             <label for="lang">Display location:</label>
65             <select id="lang" name="lang">
66                 [% PROCESS lang_locations language => default_lang %]
67             </select>
68             </li>
69             <li>
70                 <label for="branch">Library: </label>
71                 <select id="branch" name="branch">
72                     [% IF ( new_detail.branchcode == '' ) %]
73                         <option value="" selected="selected">All libraries</option>
74                     [% ELSE %]
75                         <option value=""         >All libraries</option>
76                     [% END %]
77                     [% PROCESS options_for_libraries libraries => Branches.all( selected => new_detail.branchcode, unfiltered => 1, ) %]
78                 </select>
79             </li>
80             <li>
81                 <label for="title" class="required">Title: </label>
82                 <input id="title" size="30" type="text" name="title" value="[% new_detail.title | html %]" required="required" class="required" /> <span class="required">Required</span>
83             </li>
84             <li>
85                 <label for="from">Publication date: </label>
86                 <input id="from" type="text" name="published_on" size="15" value="[% new_detail.published_on | html %]" class="datepickerfrom" />
87                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
88             </li>
89             <li>
90                 <label for="to">Expiration date: </label>
91                 <input id="to" type="text" name="expirationdate" size="15" value="[% new_detail.expirationdate | html %]" class="datepickerto" />
92                 <div class="hint">
93                     [% INCLUDE 'date-format.inc' %]
94                     <br>News will still be accessible by direct URL if expired.
95                 </div>
96             </li>
97             <li>
98                 <label for="number">Appear in position: </label>
99                 [% IF ( new_detail.number ) %]
100                     <input id="number" size="3" name="number" type="text" value="[% new_detail.number | html %]" />
101                 [% ELSE %]
102                     <input id="number" size="3" name="number" type="text" />
103                 [% END %]
104             </li>
105             <li><label for="content">News: </label>
106             <textarea name="content" id="content"  cols="75" rows="10">[% new_detail.content | $raw %]</textarea>
107             </li>
108             </ol>
109                         </fieldset>
110   
111                 <fieldset class="action"><input class="button" type="submit" value="Submit" /> <a class="cancel" href="/cgi-bin/koha/tools/koha-news.pl">Cancel</a></fieldset>
112         </form>
113     [% ELSE %]
114         [% IF ( opac_news_count ) %]
115         <form id="del_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl">
116                 <table id="newst">
117                    <thead> <tr>
118                         <th class="NoSort">&nbsp;</th>
119                         <th>Location</th>
120                         <th>Library</th>
121                         <th>Number</th>
122                         <th class="title-string">Publication date</th>
123                         <th class="title-string">Expiration date</th>
124                         <th class="anti-the">Title</th>
125                         <th>Author</th>
126                         <th class="anti-the">News</th>
127                         <th class="NoSort noExport">Actions</th>
128                     </tr></thead>
129                     <tbody>[% FOREACH opac_new IN opac_news %]
130                          [% IF ( opac_new.expired ) %]
131                             <tr class="expired">
132                             [% ELSE %]
133                             <tr>
134                             [% END %]
135                             <td>
136                                 <input type="checkbox" name="ids" value="[% opac_new.idnew | html %]" />
137                             </td>
138                             <td>[% SWITCH opac_new.lang %]
139                                 [%   CASE "koha" %]
140                                     Librarian interface
141                                 [%   CASE "slip" %]
142                                     Slip
143                                 [%   CASE "" %]
144                                     All
145                                 [%   CASE %]
146                                     OPAC ([% opac_new.lang | html %])
147                                 [% END %]
148                              </td>
149                             <td>[% IF ( opac_new.branchcode == "" ) -%]
150                                 All libraries
151                                 [% ELSE %][% opac_new.branchname | html %]
152                                 [% END %]</td>
153                             <td>[% opac_new.number | html %]</td>
154                             <td><span title="[% opac_new.newdate | html %]">[% opac_new.newdate | $KohaDates %]</span></td>
155                             <td><span title="[% opac_new.expirationdate | html %]">[% opac_new.expirationdate | $KohaDates %] [% IF ( opac_new.expired ) %](<span class="expired">expired</span>)[% END %]</span></td>
156                             <td>[% opac_new.title | html %]</td>
157                             <td>[% opac_new.author_title | html %] [% opac_new.author_firstname | html %] [% opac_new.author_surname | html %]</td>
158                             <td>
159                                 <div class="btn-group">
160                                     <a class="preview_news btn btn-default btn-xs" data-number="[% loop.count | html %]"><i class="fa fa-eye" aria-hidden="true"></i> Preview content</a>
161                                 </div>
162                                 <div id="contentModal[% loop.count | html %]" class="modal" tabindex="-1" role="dialog" data-number="[% loop.count | html %]">
163                                     <div class="modal-dialog" role="document">
164                                         <div class="modal-content modal-lg">
165                                             <div class="modal-header">
166                                                 <h5 class="modal-title">Preview of: "[% opac_new.title | html %]"</h5>
167                                             </div>
168                                         <div class="modal-body">
169                                             [% opac_new.content | $raw %]
170                                         </div>
171                                         <div class="modal-footer">
172                                             <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
173                                         </div>
174                                     </div>
175                                 </div>
176                             </td>
177                             <td class="actions">
178                                 [% IF ( wysiwyg ) %]
179                                     [% SET editmode = "wysiwyg" %]
180                                 [% ELSE %]
181                                     [% SET editmode = "text" %]
182                                 [% END %]
183                                 <div class="btn-group dropup">
184                                     <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;id=[% opac_new.idnew | uri %]&editmode=[% editmode | uri %]" class="btn btn-default btn-xs"> <i class="fa fa-pencil"></i> Edit</a><button class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown">
185                                         <span class="caret"></span>
186                                     </button>
187                                     <ul class="dropdown-menu pull-right">
188                                         <li>
189                                             [% IF ( wysiwyg ) %]
190                                                 <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;id=[% opac_new.idnew | uri %]&editmode=text"><i class="fa fa-pencil"></i> Edit with text editor</a>
191                                             [% ELSE %]
192                                                 <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;id=[% opac_new.idnew | uri %]&editmode=wysiwyg"><i class="fa fa-pencil"></i> Edit with WYSIWYG editor</a>
193                                             [% END %]
194                                         </li>
195                                     </ul>
196                                 </div>
197                                 <div class="btn-group">
198                                     <a href="/cgi-bin/koha/tools/koha-news.pl?op=del&amp;ids=[% opac_new.idnew | uri %]" class="delete_news btn btn-default btn-xs"><i class="fa fa-trash"></i> Delete</a>
199                                 </div>
200                             </td>
201                         </tr>
202                     [% END %]</tbody>
203                 </table>
204                 <input type="hidden" name="op" value="del" />
205                 <fieldset class="action"><input type="submit" class="button" value="Delete selected" /></fieldset>
206             </form>
207         [% ELSE %]
208             <div class="dialog message">There are no news items.</div>
209         [% END %]
210     [% END %]
211
212                 </main>
213             [% UNLESS ( add_form ) %]
214                 </div> <!-- /.col-sm-10.col-sm-push-2 -->
215
216                 <div class="col-sm-2 col-sm-pull-10">
217                     <aside>
218
219                         <div id="news-filter">
220                             <form action="/cgi-bin/koha/tools/koha-news.pl" method="get">
221                                 <h4>Filter</h4>
222                                 <fieldset class="brief">
223                                     <ol>
224                                         <li>
225                                             <label for="news_keyword">Keyword:</label>
226                                             <input type="text" name="news_keyword" id="news_keyword" />
227                                         </li>
228                                         <li>
229                                             <label for="news_display_location">Display location:</label>
230                                             <select name="news_display_location" id="news_display_location">
231                                                 [% PROCESS lang_locations %]
232                                             </select>
233                                         </li>
234                                         <li>
235                                             <label for="news_library">Library: </label>
236                                             <select id="news_library" name="news_library">
237                                                 <option value=""></option>
238                                                 <option value="">All libraries</option>
239                                                 [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode, unfiltered => 1, ) %]
240                                             </select>
241                                         </li>
242                                     </ol>
243                                 </fieldset>
244                             </form>
245                         </div>
246
247                         [% INCLUDE 'tools-menu.inc' %]
248                     </aside>
249                 </div> <!-- /.col-sm-2.col-sm-pull-10 -->
250             [% END %]
251         </div> <!-- /.row -->
252     </div> <!-- /.main.container-fluid -->
253
254
255 [% MACRO jsinclude BLOCK %]
256     [% INCLUDE 'calendar.inc' %]
257     [% Asset.js("js/tools-menu.js") | $raw %]
258     [% IF ( opac_news_count ) %]
259         [% INCLUDE 'datatables.inc' %]
260         <script>
261             $('.preview_news').click( function() {
262                 modalNumber = $(this).attr('data-number');
263                 $('.modal[data-number="'+modalNumber+'"]').modal('show');
264             })
265             function Checkbox(){
266                 var form = document.getElementById('del_form');
267                 var inputs = form.getElementsByTagName('input');
268                 var checked = false;
269                 for (var i=0; i<inputs.length; i++) {
270                     if (inputs[i].type == 'checkbox' && inputs[i].name == 'ids') {
271                         checked = inputs[i].checked;
272                         if (checked) return true;
273                     }
274                 }
275             }
276
277             function filterDataTable( table, column, term ){
278                 if( column ){
279                     table.column( column ).search( term ).draw();
280                 } else {
281                     table.search( term ).draw();
282                 }
283                 clearFilter( term );
284             }
285
286             function clearFilter( term ){
287                 if( term == "" ){
288                     $(".dt_button_clear_filter").addClass("disabled");
289                 } else {
290                     $(".dt_button_clear_filter").removeClass("disabled");
291                 }
292             }
293
294             $(document).ready(function() {
295                 var newst = $("#newst").DataTable($.extend(true, {}, dataTablesDefaults, {
296                     "order": [[ 4, "desc" ]],
297                     "aoColumnDefs": [
298                         { "sortable": false, "searchable": false, 'targets': [ 'NoSort' ] },
299                         { "type": "anti-the", "targets": [ "anti-the" ] },
300                         { "type": "title-string", "targets" : [ "title-string"] }
301                     ],
302                     "sPaginationType": "full_numbers"
303                 }));
304
305                 $(".delete_news").on("click", function(){
306                     return confirmDelete( _("Are you sure you want to delete this news item? This cannot be undone.") );
307                 });
308
309                 $("#del_form").on("submit",function(){
310                     if ( Checkbox() ) {
311                         return confirmDelete( _("Are you sure you want to delete the selected news?") );
312                     } else {
313                         alert(_("Please select a news item to delete."));
314                         return false;
315                     }
316                 });
317
318                 newst.on( 'search.dt', function () {
319                     var term = newst.search();
320                     $("#news_keyword").val( term );
321                 });
322
323                 $("#news_keyword").on("keyup", function(){
324                     var term = $(this).val();
325                     filterDataTable( newst, null, term );
326                 });
327
328                 $("#news_display_location").on("change", function(){
329                     var term = $(this).val();
330                     filterDataTable( newst, 1, term );
331                 });
332
333                 $("#news_library").on("change", function(){
334                     // Table must be filtered by the <option>'s text, not its value
335                     var opt = $(this).find("option:selected").text();
336                     filterDataTable( newst, 2, opt );
337                 });
338
339                 $(".dt_button_clear_filter").on("click", function(){
340                     newst.search('').columns().search('').draw();
341                     $("#news-filter select").each(function(){
342                         $(this).val("");
343                     });
344                 });
345             });
346         </script>
347     [% END %]
348     [% UNLESS ( wysiwyg ) %]
349         [% Asset.js( "lib/codemirror/codemirror.min.js" ) | $raw %]
350         [% Asset.js( "lib/codemirror/xml.min.js" ) | $raw %]
351         [% Asset.js( "lib/codemirror/lint.min.js" ) | $raw %]
352         [% Asset.js( "lib/linters/htmlhint.min.js" ) | $raw %]
353         [% Asset.js( "lib/codemirror/html-lint.min.js" ) | $raw %]
354         <script>
355             var editor = CodeMirror.fromTextArea(document.getElementById('content'), {
356                 lineNumbers: true,
357                 lineWrapping: true,
358                 lint: true,
359                 mode: "text/html",
360                 gutters: ["CodeMirror-lint-markers"],
361                 viewportMargin: Infinity,
362             });
363         </script>
364     [% ELSE %]
365         [% Asset.js("lib/tiny_mce/tinymce.min.js") | $raw %]
366         [% INCLUDE 'str/tinymce_i18n.inc' %]
367         <script>
368             tinyMCE.init({
369                 verify_html: false,
370                 force_br_newlines : false,
371                 force_p_newlines : false,
372                 forced_root_block : '',
373                 branding : false,
374                 relative_urls : false,
375                 content_css : "[% interface | html %]/[% theme | html %]/css/tinymce.css",
376                 menubar : "file edit view insert format tools table",
377                 mode : "specific_textareas",
378                 plugins : "autoresize table hr link image charmap lists code emoticons",
379                 toolbar : [
380                     "formatselect | bold italic | cut copy paste | alignleft aligncenter alignright | outdent indent | image link unlink anchor cleanup hr",
381                     "table | bullist numlist | undo redo | removeformat | emoticons charmap | forecolor backcolor | code visualaid help"
382                 ],
383             });
384         </script>
385     [% END # /IF NewsToolEditor %]
386 [% END %]
387
388 [% BLOCK lang_locations %]
389     [% IF ( language == "" ) %]
390         <option value="" selected="selected"></option>
391     [% ELSE %]
392         <option value="">All</option>
393     [% END %]
394     [% IF ( language == "koha" ) %]
395         <option value="koha" selected="selected">Librarian interface</option>
396     [% ELSE %]
397         <option value="koha">Librarian interface</option>
398     [% END %]
399     [% IF ( language == "slip" ) %]
400         <option value="slip" selected="selected">Slip</option>
401     [% ELSE %]
402         <option value="slip">Slip</option>
403     [% END %]
404     [% FOREACH lang_lis IN lang_list %]
405         <optgroup label="[% lang_lis.language | html %]">
406             [% FOREACH location IN [ '', 'OpacNavRight', 'opacheader', 'OpacCustomSearch', 'OpacMainUserBlock', 'opaccredits', 'OpacLoginInstructions', 'OpacSuggestionInstructions'] %]
407                 [% IF ( location == '' ) %]
408                     [% SET location_lang = lang_lis.language %]
409                     [% location = BLOCK %]OPAC news[% END %]
410                 [% ELSE %]
411                     [% SET location_lang = location _ "_" _ lang_lis.language %]
412                 [% END %]
413                 [% IF ( location_lang == language ) %]
414                     <option value="[% location_lang | html %]" selected="selected">[% location | html %] ([% lang_lis.language | html %])</option>
415                 [% ELSE %]
416                     <option value="[% location_lang | html %]">[% location | html %] ([% lang_lis.language | html %])</option>
417                 [% END %]
418             [% END %]
419         </optgroup>
420     [% END %]
421 [% END %]
422
423 [% INCLUDE 'intranet-bottom.inc' %]