Bug 10240: (follow-up) don't delete transactions if auth fails
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / koha-news.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Tools &rsaquo; News</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 [% INCLUDE 'calendar.inc' %]
5 [% IF ( opac_news_count ) %]
6     <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/en/css/datatables.css" />
7     <script type="text/javascript" src="[% interface %]/[% theme %]/en/lib/jquery/plugins/jquery.dataTables.min.js"></script>
8     [% INCLUDE 'datatables-strings.inc' %]
9     <script type="text/javascript" src="[% interface %]/[% theme %]/en/js/datatables.js"></script>
10     <script type="text/javascript">//<![CDATA[
11     [% IF (dateformat == 'metric') %]dt_add_type_uk_date();[% END %]
12     $(document).ready(function() {
13         $("#newst").dataTable($.extend(true, {}, dataTablesDefaults, {
14             "sDom": 't',
15             "aoColumnDefs": [
16                 { "aTargets": [ 0,-1,-2 ], "bSortable": false, "bSearchable": false }
17             ],
18             "bPaginate": false
19         }));
20     });
21     //]]>
22     </script>
23 [% END %]
24 <script language="javascript" type="text/javascript" src="[% interface %]/lib/tiny_mce/tiny_mce.js"></script>
25 <script type="text/javascript">//<![CDATA[
26 var MSG_CONFIRM_DELETE_NEWS  = _("Are you sure you want to delete the selected news?");
27
28 tinyMCE.init({
29     mode : "textareas",
30     theme : "advanced",
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"><i class="icon-plus"></i> New entry</a>
65 </div>
66 [% END %]
67
68 [% IF ( add_form ) %]
69         <form name="add_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl" >
70             <input type="hidden" name="op" value="[% op %]" />
71             <input type="hidden" name="id" value="[% id %]" />
72                         <fieldset class="rows">
73             <legend>OPAC and Koha news</legend>
74            <ol> <li>
75             <label for="lang">Display location</label>
76             <select id="lang" name="lang">
77                 <option value="koha">Librarian interface</option>
78                 [% IF ( slip ) %]<option value="slip" selected="selected">Slip</option>[% ELSE %]<option value="slip">Slip</option>[% END %]
79                 [% FOREACH lang_lis IN lang_list %]
80                     [% IF ( lang_lis.selected ) %]<option value="[% lang_lis.language %]" selected="selected">OPAC ([% lang_lis.language %])</option>[% ELSE %]<option value="[% lang_lis.language %]">OPAC ([% lang_lis.language %])</option>[% END %]
81                 [% END %]
82             </select>
83             </li>
84             <li>
85                 <label for="title">Title: </label>
86                 <input id="title" size="30" type="text" name="title" value="[% new_detail.title %]" />
87             </li>
88             <li>
89                 <label for="from">Publication date: </label>
90                 <input id="from" type="text" name="timestamp" size="15" value="[% new_detail.timestamp %]" class="datepickerfrom" />
91                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
92             </li>
93             <li>
94                 <label for="to">Expiration date: </label>
95                 <input id="to" type="text" name="expirationdate" size="15" value="[% new_detail.expirationdate %]" class="datepickerto" />
96                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
97             </li>
98             <li>
99                 <label for="number">Appear in position: </label>
100                 [% IF ( new_detail.number ) %]
101                     <input id="number" size="3" name="number" type="text" checked="checked" value="[% new_detail.number %]" />
102                 [% ELSE %]
103                     <input id="number" size="3" name="number" type="text" />
104                 [% END %]
105             </li>
106             <li><label for="new">News: </label>
107             <textarea name="new" id="new"  cols="75" rows="10">[% new_detail.new %]</textarea></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         <div style="margin-bottom:5px;">
115         <form name="add_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl" >
116             <label for="lang">Display location:</label>
117             <select name="lang" id="lang">
118             <option value="">All</option>
119             <option value="koha">Librarian interface</option>
120             <option value="slip">Slip</option>
121                 [% FOREACH lang_lis IN lang_list %]
122                     [% IF ( lang_lis.selected ) %]
123                         <option value="[% lang_lis.language %]" selected="selected">
124                     [% ELSE %]
125                         <option value="[% lang_lis.language %]">
126                     [% END %]
127                         OPAC ([% lang_lis.language %])
128                     </option>
129                 [% END %]
130             </select>
131             <input type="submit" class="button" value="Filter" />
132         </form>
133         </div>
134         [% IF ( opac_news_count ) %]
135         <form name="del_form" method="post" action="/cgi-bin/koha/tools/koha-news.pl" onsubmit='return confirm(MSG_CONFIRM_DELETE_NEWS)'>
136                 <table id="newst">
137                    <thead> <tr>
138                         <th>&nbsp;</th>
139                         <th>Location</th>
140                         <th>Number</th>
141                         <th>Creation date</th>
142                         <th>Expiration date</th>
143                         <th>Title</th>
144                         <th>News</th>
145                         <th>&nbsp;</th>
146                     </tr></thead>
147                     <tbody>[% FOREACH opac_new IN opac_news %]
148                          [% IF ( opac_new.expired ) %]
149                             <tr class="expired">
150                             [% ELSE %]
151                             <tr>
152                             [% END %]
153                             <td>
154                                 <input type="checkbox" name="ids" value="[% opac_new.idnew %]" />
155                             </td>
156                             <td>[% IF ( opac_new.lang == 'koha' ) %]
157                                     Librarian interface
158                                  [% ELSE %]
159                                     [% IF ( opac_new.lang == 'slip' ) %]
160                                         Slip
161                                     [% ELSE %]
162                                         OPAC
163                                     [% END %]
164                                  [% END %]
165                              </td>
166
167                             <td>[% opac_new.number %]</td>
168                             <td>[% opac_new.newdate %]</td>
169                             <td>[% opac_new.expirationdate %] [% IF ( opac_new.expired ) %](<span class="expired">expired</span>)[% END %]</td>
170                             <td>[% opac_new.title %]</td>
171                            <td>
172                                 [% opac_new.new %]
173                             </td>
174                             <td><a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;id=[% opac_new.idnew %]">Edit</a></td>
175                         </tr>
176                     [% END %]</tbody>
177                 </table>
178                 <input type="hidden" name="op" value="del" />
179                 <fieldset class="action"><input type="submit" class="button" value="Delete selected" /></fieldset>
180             </form>
181         [% ELSE %]
182             <p>No news loaded</p>
183         [% END %]
184     [% END %]
185 </div>
186 </div>
187 [% UNLESS ( add_form ) %]
188     <div class="yui-b noprint">
189         [% INCLUDE 'tools-menu.inc' %]
190     </div>
191 [% END %]
192 </div>
193 [% INCLUDE 'intranet-bottom.inc' %]