Bug 29515: Make title for HTML customizations optional
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / additional-contents.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>Additional contents &rsaquo; Tools &rsaquo; Koha</title>
9 [% INCLUDE 'doc-head-close.inc' %]
10 [% IF ( wysiwyg ) %]
11     [% SET editmode = "wysiwyg" %]
12 [% ELSE %]
13     [% SET editmode = "text" %]
14     [% Asset.css("lib/codemirror/codemirror.css") | $raw %]
15     [% Asset.css("lib/codemirror/lint.min.css") | $raw %]
16     <style>
17         .CodeMirror {
18             resize: vertical;
19             z-index: 0;
20         }
21     </style>
22 [% END %]
23 </head>
24
25 <body id="tools_additional-contents" class="tools">
26 [% INCLUDE 'header.inc' %]
27 [% INCLUDE 'cat-search.inc' %]
28
29 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
30     <ol>
31         <li>
32             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
33         </li>
34         <li>
35             <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
36         </li>
37
38         [% IF op == 'add_form' %]
39             <li>
40                 [% IF category == 'news' %]
41                     <a href="/cgi-bin/koha/tools/additional-contents.pl?category=news">News</a>
42                 [% ELSE %]
43                     <a href="/cgi-bin/koha/tools/additional-contents.pl?category=html_customizations">HTML customizations</a>
44                 [% END %]
45             </li>
46             <li>
47                 <a href="#" aria-current="page">
48                     [% IF additional_content.idnew %]
49                         <span>Modify additional content<span>
50                     [% ELSE %]
51                         <span>Add additional content<span>
52                     [% END %]
53                     ([% IF category == 'news' %]<span>News</span>[% ELSE %]<span>HTML customizations</span>[% END %])
54                 </a>
55             </li>
56         [% ELSE %]
57             <li>
58                 <a href="#" aria-current="page">
59                     [% IF category == 'news' %]
60                         News
61                     [% ELSE %]
62                         HTML customizations
63                     [% END %]
64                 </a>
65             </li>
66         [% END %]
67
68     </ol>
69 </nav>
70
71 [% IF op == 'add_form' %]
72 <div class="main container-fluid">
73     <div class="row">
74         <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
75 [% ELSE %]
76 <div class="main container-fluid">
77     <div class="row">
78         <div class="col-sm-10 col-sm-push-2">
79 [% END %]
80
81 <main>
82
83     [% FOR m IN messages %]
84         <div class="dialog [% m.type | html %]">
85             [% SWITCH m.code %]
86             [% CASE 'error_on_update' %]
87                 An error occurred when updating this content. Perhaps it already exists.
88             [% CASE 'error_on_insert' %]
89                 An error occurred when adding this content. Check the logs
90             [% CASE 'error_on_delete' %]
91                 An error occurred when deleting this content. Check the logs.
92             [% CASE 'success_on_update' %]
93                 Content updated successfully.
94             [% CASE 'success_on_insert' %]
95                 Content added successfully.
96             [% CASE 'success_on_delete' %]
97                 Content deleted successfully.
98             [% CASE %]
99                 [% m.code | html %]
100             [% END %]
101         </div>
102     [% END %]
103
104     [% IF op == 'add_form' %]
105         [% PROCESS add_form %]
106     [% ELSE %]
107         [% PROCESS list %]
108     [% END %]
109
110 </main>
111
112         [% IF op != 'add_form' %]
113             </div> <!-- /.col-sm-10.col-sm-push-2 -->
114
115             <div class="col-sm-2 col-sm-pull-10">
116                 <aside>
117
118                     <div id="news-filter">
119                         <form action="/cgi-bin/koha/tools/additional-contents.pl" method="get">
120                             <h4>Filter</h4>
121                             <fieldset class="brief">
122                                 <ol>
123                                     <li>
124                                         <label for="news_keyword">Keyword:</label>
125                                         <input type="text" name="news_keyword" id="news_keyword" />
126                                     </li>
127                                     <li>
128                                         <label for="news_display_location">Display location:</label>
129                                         <select name="news_display_location" id="news_display_location">
130                                             <option value="">All</option>
131                                             [% PROCESS locations_options category => category %]
132                                         </select>
133                                     </li>
134                                     <li>
135                                         <label for="news_library">Library: </label>
136                                         <select id="news_library" name="news_library">
137                                             <option value=""></option>
138                                             <option value="">All libraries</option>
139                                             [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode, unfiltered => 1, ) %]
140                                         </select>
141                                     </li>
142                                     <li>
143                                         <label>
144                                             <input type="checkbox" name="show_expired" id="show_expired" /> Show expired
145                                         </label>
146                                     </li>
147                                 </ol>
148                             </fieldset>
149                         </form>
150                     </div>
151
152                     [% INCLUDE 'tools-menu.inc' %]
153                 </aside>
154             </div> <!-- /.col-sm-2.col-sm-pull-10 -->
155         [% END %]
156     </div> <!-- /.row -->
157 </div> <!-- /.main.container-fluid -->
158
159 [% BLOCK add_form %]
160     [% IF additional_content %]
161         <h1>Modify an additional content</h1>
162     [% ELSE %]
163         <h1>New additional content ([% IF category == 'news' %]News[% ELSE %]HTML customizations[% END %])</h1>
164     [% END %]
165
166     <div id="toolbar" class="btn-toolbar">
167         <div class="btn-group">
168             <button class="btn btn-default" id="submit_form"><i class="fa fa-save"></i> Save</button>
169         </div>
170         [% IF category == 'news' %]
171             <a class="btn btn-default cancel" href="/cgi-bin/koha/tools/additional-contents.pl"><i class="fa fa-remove"></i> Cancel</a>
172         [% ELSE %]
173             <a class="btn btn-default cancel" href="/cgi-bin/koha/tools/additional-contents.pl?category=html_customizations"><i class="fa fa-remove"></i> Cancel</a>
174         [% END %]
175     </div>
176
177     <form id="add_additional_content" method="post" action="/cgi-bin/koha/tools/additional-contents.pl" class="validate">
178         <input type="hidden" name="op" value="add_validate" />
179         <input type="hidden" name="category" value="[% category | html %]" />
180         <input type="hidden" name="code" value="[% additional_content.code | html %]" />
181         <fieldset class="rows">
182             <ol>
183                 <li>
184                     <label for="location">Display location:</label>
185                     <select id="location" name="location">
186                         [% PROCESS locations_options location => additional_content.location %]
187                     </select>
188                 </li>
189                 <li>
190                     <label for="branchcode">Library: </label>
191                     <select id="branchcode" name="branchcode">
192                         [% IF additional_content.branchcode == '' %]
193                             <option value="" selected="selected">All libraries</option>
194                         [% ELSE %]
195                             <option value="">All libraries</option>
196                         [% END %]
197                         [% PROCESS options_for_libraries libraries => Branches.all( selected => additional_content.branchcode, unfiltered => 1, ) %]
198                     </select>
199                 </li>
200                 [% UNLESS languages.size %]
201                     <li>
202                         [% IF category == 'news' %]
203                             <label for="title" class="required">Title: </label>
204                             <input id="title" size="100" maxlength="250" type="text" name="title_default" value="[% additional_content.title | html %]" required="required" class="required" /> <span class="required">Required</span>
205                         [% ELSE %]
206                             <label for="title">Title: </label>
207                             <input id="title" size="100" maxlength="250" type="text" name="title_default" value="[% additional_content.title | html %]" />
208                         [% END %]
209                     </li>
210                 [% END %]
211                 <li>
212                     <label for="from">Publication date: </label>
213                     <input id="from" type="text" name="published_on" size="15" value="[% additional_content.published_on | $KohaDates %]" class="flatpickr" data-date_to="to" />
214                     <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
215                 </li>
216                 <li>
217                     <label for="to">Expiration date: </label>
218                     <input id="to" type="text" name="expirationdate" size="15" value="[% additional_content.expirationdate | $KohaDates %]" class="flatpickr" />
219                     <div class="hint">
220                         [% INCLUDE 'date-format.inc' %]
221                         [% IF category == 'news' %]
222                             <br>News will still be accessible by direct URL if expired.
223                         [% END %]
224                     </div>
225                 </li>
226                 <li>
227                     <label for="number">Appear in position: </label>
228                     [% IF ( additional_content.number ) %]
229                         <input id="number" size="3" name="number" type="text" value="[% additional_content.number | html %]" />
230                     [% ELSE %]
231                         <input id="number" size="3" name="number" type="text" />
232                     [% END %]
233                 </li>
234             </ol>
235         </fieldset>
236
237         [% IF languages.size %]
238             <div style="clear:both"></div>
239             <div id="tabs">
240                 <ul>
241                     [% FOR language IN languages %]
242                         [% IF language.lang == 'default' %]
243                             <li><a href="#lang_default">Default</a></li>
244                         [% ELSE %]
245                             <li><a href="#lang_[% language.lang | uri %]">[% language.description | html %]</a></li>
246                         [% END %]
247                     [% END %]
248                 </ul>
249
250                 [% FOR language IN languages %]
251                     <div id="lang_[% language.lang | uri %]" class="lang clearfix" data-lang="[% language.description | html %]">
252                         <fieldset class="rows">
253                             <ol>
254                                 <li style="list-style: none;">
255                                     <label for="title_[% language.lang | html %]">Title: </label>
256                                     <input id="title_[% language.lang| html %]" size="100" maxlength="250" type="text" name="title_[% language.lang | html %]" value="[% translated_contents.item(language.lang).title | html %]">
257                                 </li>
258                                 <li style="list-style: none;">
259                                     <label for="content_[% language.lang | html %]">Content: </label>
260                                     <textarea name="content_[% language.lang | html %]" id="content_[% language.lang | html %]" data-lang="[% language.lang | html%]" cols="75" rows="10">[% translated_contents.item(language.lang).content | html %]</textarea>
261                                     <input type="hidden" name="lang" value="[% language.lang | html %]" />
262                                 </li>
263                             </ol>
264                         </fieldset>
265                     </div>
266                 [% END %]
267             </div>
268         [% ELSE %]
269             <div id="lang_default">
270                 <div class="clearfix">
271                     <textarea name="content" id="content_default" data-lang="[% language.lang | html %]"  cols="75" rows="10">[% additional_content.content | html %]</textarea>
272                 </div>
273             </div>
274         [% END %]
275     </form>
276 [% END %]
277
278 [% BLOCK list %]
279
280     <div id="toolbar" class="btn-toolbar">
281         <div class="btn-group">
282             <a href="/cgi-bin/koha/tools/additional-contents.pl?op=add_form&category=[% category | uri %]&editmode=[% editmode | uri %]" class="btn btn-default" id="newentry"> <i class="fa fa-plus"></i> New entry</a><button class="btn btn-default dropdown-toggle" data-toggle="dropdown">
283                 <span class="caret"></span>
284             </button>
285             <ul class="dropdown-menu pull-right">
286                 <li>
287                     [% IF ( wysiwyg ) %]
288                         <a href="/cgi-bin/koha/tools/additional-contents.pl?op=add_form&category=[% category | uri %]&editmode=text">New entry using text editor</a>
289                     [% ELSE %]
290                         <a href="/cgi-bin/koha/tools/additional-contents.pl?op=add_form&category=[% category | uri %]&editmode=wysiwyg">New entry using WYSIWYG editor</a>
291                     [% END %]
292                 </li>
293             </ul>
294         </div>
295     </div>
296
297     <h2>Additional contents ([% IF category == 'news' %]News[% ELSE %]HTML customizations[% END %])</h2>
298     [% IF category == 'news' %]
299         See <a href="/cgi-bin/koha/tools/additional-contents.pl?category=html_customizations">HTML customizations</a>
300     [% ELSE %]
301         See <a href="/cgi-bin/koha/tools/additional-contents.pl?category=news">News</a>
302     [% END %]
303
304     [% IF additional_contents.count %]
305         <form id="del_form" method="post" action="/cgi-bin/koha/tools/additional-contents.pl">
306             <table id="table_additional_contents">
307                 <thead>
308                     <tr>
309                         <th class="NoSort">&nbsp;</th>
310                         <th>Location</th>
311                         <th>Library</th>
312                         <th>Number</th>
313                         <th>Publication date</th>
314                         <th>Expiration date</th>
315                         <th class="anti-the">Title</th>
316                         <th>Author</th>
317                         <th class="anti-the">News</th>
318                         <th class="NoSort noExport">Actions</th>
319                     </tr>
320                 </thead>
321                 <tbody>
322                     [% FOREACH c IN additional_contents%]
323                         [% IF ( c.is_expired ) %]<tr class="expired">[% ELSE %]<tr>[% END %]
324                         <td>
325                             <input type="checkbox" name="ids" value="[% c.idnew | html %]" />
326                         </td>
327                         <td>
328                             [% IF c.category == 'news' %]
329                                 [% IF c.location == 'staff_and_opac' %]All
330                                 [% ELSIF c.location == 'staff_only' %]Librarian interface
331                                 [% ELSIF c.location == 'opac_only' %]OPAC
332                                 [% ELSIF c.location == 'slip' %]Slip
333                                 [% ELSE %]Unknown ('[% location | html %]')
334                                 [% END %]
335                             [% ELSE %]
336                                 [% c.location | html %]
337                             [% END %]
338                         </td>
339                         <td>
340                             [% IF ( c.branchcode == "" ) -%]
341                             All libraries
342                             [% ELSE %][% c.library.branchname | html %]
343                             [% END %]
344                         </td>
345                         <td>[% c.number | html %]</td>
346                         <td data-order="[% c.published_on | html %]">[% c.published_on | $KohaDates %]</td>
347                         <td data-order="[% c.expirationdate | html %]">[% c.expirationdate | $KohaDates %] [% IF ( c.is_expired ) %](<span class="expired">expired</span>)[% END %]</td>
348                         <td>[% c.title | html %]</td>
349                         <td>[% IF ( c.author) %][% INCLUDE 'patron-title.inc' patron=c.author %][% END %]</td>
350                         <td>
351                             <div class="btn-group">
352                                 <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>
353                             </div>
354                             <div id="contentModal[% loop.count | html %]" class="modal" tabindex="-1" role="dialog" data-number="[% loop.count | html %]">
355                                 <div class="modal-dialog" role="document">
356                                     <div class="modal-content modal-lg">
357                                         <div class="modal-header">
358                                             <h5 class="modal-title">Preview of: "[% c.title | html %]"</h5>
359                                         </div>
360                                     <div class="modal-body">
361                                         [% c.content | $raw %]
362                                     </div>
363                                     <div class="modal-footer">
364                                         <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
365                                     </div>
366                                 </div>
367                             </div>
368                         </td>
369                         <td class="actions">
370                             <div class="btn-group dropup">
371                                 <a href="/cgi-bin/koha/tools/additional-contents.pl?op=add_form&amp;id=[% c.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">
372                                     <span class="caret"></span>
373                                 </button>
374                                 <ul class="dropdown-menu pull-right">
375                                     <li>
376                                         [% IF ( wysiwyg ) %]
377                                             <a href="/cgi-bin/koha/tools/additional-contents.pl?op=add_form&amp;id=[% c.idnew | uri %]&editmode=text"><i class="fa fa-pencil"></i> Edit with text editor</a>
378                                         [% ELSE %]
379                                             <a href="/cgi-bin/koha/tools/additional-contents.pl?op=add_form&amp;id=[% c.idnew | uri %]&editmode=wysiwyg"><i class="fa fa-pencil"></i> Edit with WYSIWYG editor</a>
380                                         [% END %]
381                                     </li>
382                                 </ul>
383                             </div>
384                             <div class="btn-group">
385                                 <a href="#" class="delete_news btn btn-default btn-xs" data-idnew="[% c.idnew | html %]"><i class="fa fa-trash"></i> Delete</a>
386                             </div>
387                         </td>
388                     </tr>
389                     [% END %]
390                 </tbody>
391             </table>
392             <input type="hidden" name="op" value="delete_confirmed" />
393             <input type="hidden" name="category" value="[% category | html %]" />
394             <fieldset class="action"><input type="submit" class="button" value="Delete selected" /></fieldset>
395         </form>
396         <form action="/cgi-bin/koha/tools/additional-contents.pl" method="post" id="delete_single">
397             <input type="hidden" id="del_op" name="op" value="delete_confirmed" />
398             <input type="hidden" id="del_category" name="category" value="[% category | html %]" />
399             <input type="hidden" id="del_ids" name="ids" />
400         </form>
401     [% ELSE %]
402         <div class="dialog message">There are no additional contents.</div>
403     [% END %]
404 [% END %]
405
406 [% BLOCK locations_options %]
407     [% IF category == 'news' %]
408         [% IF location == "staff_and_opac" %]
409             <option value="staff_and_opac" selected="selected">Librarian and OPAC interfaces</option>
410         [% ELSE %]
411             <option value="staff_and_opac">Librarian and OPAC interfaces</option>
412         [% END %]
413
414         [% IF location == "staff_only" %]
415             <option value="staff_only" selected="selected">Librarian interface</option>
416         [% ELSE %]
417             <option value="staff_only">Librarian interface</option>
418         [% END %]
419
420         [% IF location == "opac_only" %]
421             <option value="opac_only" selected="selected">OPAC</option>
422         [% ELSE %]
423             <option value="opac_only">OPAC</option>
424         [% END %]
425
426         [% IF location == "slip" %]
427             <option value="slip" selected="selected">Slip</option>
428         [% ELSE %]
429             <option value="slip">Slip</option>
430         [% END %]
431     [% ELSE %]
432         [% FOREACH l IN [ 'OpacNavRight', 'opacheader', 'OpacCustomSearch', 'OpacMainUserBlock', 'opaccredits', 'OpacLoginInstructions', 'OpacNav', 'OpacNavBottom', 'OpacSuggestionInstructions', 'ArticleRequestsDisclaimerText', 'OpacMoreSearches' ] %]
433             [% IF l == location %]
434                 <option value="[% l | html %]" selected="selected">[% l | html %]</option>
435             [% ELSE %]
436                 <option value="[% l | html %]">[% l | html %]</option>
437             [% END %]
438         [% END %]
439     [% END %]
440 [% END %]
441
442 [% MACRO jsinclude BLOCK %]
443     [% INCLUDE 'calendar.inc' %]
444     [% Asset.js("js/tools-menu.js") | $raw %]
445     [% Asset.js("lib/hc-sticky.js") | $raw %]
446     [% IF additional_contents.count %]
447         [% INCLUDE 'datatables.inc' %]
448         <script>
449             $('.preview_news').click( function() {
450                 modalNumber = $(this).attr('data-number');
451                 $('.modal[data-number="'+modalNumber+'"]').modal('show');
452             })
453             function Checkbox(){
454                 var form = document.getElementById('del_form');
455                 var inputs = form.getElementsByTagName('input');
456                 var checked = false;
457                 for (var i=0; i<inputs.length; i++) {
458                     if (inputs[i].type == 'checkbox' && inputs[i].name == 'ids') {
459                         checked = inputs[i].checked;
460                         if (checked) return true;
461                     }
462                 }
463             }
464
465             function filterDataTable( table, column, term ){
466                 if( column ){
467                     table.column( column ).search( term ).draw();
468                 } else {
469                     table.search( term ).draw();
470                 }
471                 clearFilter( term );
472             }
473
474             function clearFilter( term ){
475                 if( term == "" ){
476                     $(".dt_button_clear_filter").addClass("disabled");
477                 } else {
478                     $(".dt_button_clear_filter").removeClass("disabled");
479                 }
480             }
481
482             /* Custom table search configuration: If a table row
483                has an "expired" class, hide it UNLESS the
484                show_expired checkbox is checked */
485             $.fn.dataTable.ext.search.push(
486                 function( settings, searchData, index, rowData, counter ) {
487                     var row = $(settings.aoData[index].nTr);
488                     if( row.hasClass("expired") && !$("#show_expired").prop("checked") ){
489                         return false;
490                     } else {
491                         return true;
492                     }
493                 }
494             );
495
496             $(document).ready(function() {
497
498                 var table = $("#table_additional_contents").DataTable($.extend(true, {}, dataTablesDefaults, {
499                     "order": [[ 4, "desc" ]],
500                     "aoColumnDefs": [
501                         { "sortable": false, "searchable": false, 'targets': [ 'NoSort' ] },
502                         { "type": "anti-the", "targets": [ "anti-the" ] }
503                     ],
504                     "sPaginationType": "full_numbers"
505                 }));
506
507                 $("#del_form").on("click", ".delete_news", function(e){
508                     e.preventDefault();
509                     if( confirmDelete( _("Are you sure you want to delete this content? This cannot be undone.") ) ){
510                         $("#del_ids").val( $(this).data("idnew") );
511                         $("#delete_single").submit();
512                     }
513                 });
514
515                 $("#del_form").on("submit",function(){
516                     if ( Checkbox() ) {
517                         return confirmDelete( _("Are you sure you want to delete the selected content?") );
518                     } else {
519                         alert(_("Please select content to delete."));
520                         return false;
521                     }
522                 });
523
524                 $("#show_expired").on("change", function(){
525                     /* redraw the DataTable according to the custom search function */
526                     table.draw();
527                 });
528
529                 table.on( 'search.dt', function () {
530                     var term = table.search();
531                     $("#news_keyword").val( term );
532                 });
533
534                 $("#news_keyword").on("keyup", function(){
535                     var term = $(this).val();
536                     filterDataTable( table, null, term );
537                 });
538
539                 $("#news_display_location").on("change", function(){
540                     var term = $(this).val();
541                     filterDataTable( table, 1, term );
542                 });
543
544                 $("#news_library").on("change", function(){
545                     // Table must be filtered by the <option>'s text, not its value
546                     var opt = $(this).find("option:selected").text();
547                     filterDataTable( table, 2, opt );
548                 });
549
550                 $(".dt_button_clear_filter").on("click", function(){
551                     table.search('').columns().search('').draw();
552                     $("#news-filter select").each(function(){
553                         $(this).val("");
554                     });
555                 });
556             });
557         </script>
558     [% ELSE %]
559         <script>
560             $(document).ready(function() {
561                 $("#tabs").tabs();
562                 [% IF category == 'news' %]
563                 $("#add_additional_content").validate({
564                     submitHandler: function(form){
565                         if ( ! $("#title_default").val().length > 0 ) {
566                             alert(__("Please specify a title for 'Default'"));
567                             return false;
568                         }
569
570                         form.submit();
571                     }
572                 });
573                 [% END %]
574
575                 $("#submit_form").on("click",function(){
576                     $("#add_additional_content").submit();
577                 });
578
579                 Sticky = $("#toolbar");
580                 Sticky.hcSticky({
581                     stickTo: ".main",
582                     stickyClass: "floating"
583                 });
584
585             });
586         </script>
587     [% END %]
588     [% UNLESS ( wysiwyg ) %]
589         [% Asset.js( "lib/codemirror/codemirror.min.js" ) | $raw %]
590         [% Asset.js( "lib/codemirror/xml.min.js" ) | $raw %]
591         [% Asset.js( "lib/codemirror/lint.min.js" ) | $raw %]
592         [% Asset.js( "lib/linters/htmlhint.min.js" ) | $raw %]
593         [% Asset.js( "lib/codemirror/html-lint.min.js" ) | $raw %]
594         <script>
595             $("textarea[name^='content_']").each( function(index) {
596                 var this_lang = $(this).attr('data-lang');
597                 var editor = CodeMirror.fromTextArea(document.getElementById('content_' + this_lang), {
598                     lineNumbers: true,
599                     lineWrapping: true,
600                     lint: true,
601                     mode: "text/html",
602                     gutters: ["CodeMirror-lint-markers"],
603                     viewportMargin: Infinity,
604                 });
605             });
606         </script>
607     [% ELSE %]
608         [% Asset.js("lib/tiny_mce/tinymce.min.js") | $raw %]
609         [% INCLUDE 'str/tinymce_i18n.inc' %]
610         <script>
611             tinyMCE.init({
612                 verify_html: false,
613                 force_br_newlines : false,
614                 force_p_newlines : false,
615                 forced_root_block : '',
616                 branding : false,
617                 relative_urls : false,
618                 content_css : "[% interface | html %]/[% theme | html %]/css/tinymce.css",
619                 menubar : "file edit view insert format tools table",
620                 mode : "specific_textareas",
621                 plugins : "autoresize table hr link image charmap lists code emoticons",
622                 extended_valid_elements:"style,link[href|rel]",
623                 custom_elements:"style,link,~link",
624                 toolbar : [
625                     "formatselect | bold italic | cut copy paste | alignleft aligncenter alignright | outdent indent | image link unlink anchor cleanup hr",
626                     "table | bullist numlist | undo redo | removeformat | emoticons charmap | forecolor backcolor | code"
627                 ],
628             });
629         </script>
630     [% END # /UNLESS wysiwyg %]
631 [% END %]
632
633 [% INCLUDE 'intranet-bottom.inc' %]