Corrections to make markup more valid (quoting attributes, encoding amersands, etc.)
[koha_gimpoz] / koha-tmpl / intranet-tmpl / default / en / authorities / detail.tmpl
1 <!-- TMPL_INCLUDE NAME="auth-top.inc" -->
2 <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/includes/marc-editor.css">
3 <div class="tabbed">
4         <h1 class="authority">Authority number : <!-- TMPL_VAR NAME="authid" --></h1>
5         <a href="authorities.pl?authid=<!-- TMPL_VAR NAME="authid" -->">
6                 <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/fileopen.png">
7         </a>
8         <a href="javascript:confirm_deletion()">
9                 <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/edittrash.png">
10         </a>
11         <a href="javascript:Dopop('detailprint.pl?authid=<!-- TMPL_VAR NAME="authid" -->')" class="button authority">
12                 Print
13         </a>
14 </div>
15
16 <div name="0XX" id="0XX" class="tab" style="visibility:visible">
17         <!-- TMPL_LOOP NAME="0XX" -->
18                         <p class="MARCtag">
19                                 <!-- TMPL_VAR NAME="tag" -->
20                         </p>
21                 <!-- TMPL_LOOP NAME="subfield" -->
22                         <p>
23                                 <label class="labelsubfield">
24                                 <a href="search.marc/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="marc_tag" --><!-- TMPL_VAR NAME="marc_subfield" -->&amp;operator=&#x003D&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE=URL -->">
25                                         <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15">
26                                 </a>
27                                 <!-- TMPL_VAR NAME="marc_subfield" -->
28                                 <!-- TMPL_VAR NAME="marc_lib" --></label>
29                                 <!-- TMPL_VAR NAME="marc_value" -->
30                         </p>
31                 <!-- /TMPL_LOOP -->
32         <!-- /TMPL_LOOP -->
33 </div>
34         
35 <script language="JavaScript" type="text/javascript">
36
37 function confirm_deletion() {
38         var is_confirmed = confirm('Are you sure you want to delete this biblio?');
39         if (is_confirmed) {
40                 window.location="acqui.simple/addbiblio.pl?op=delete&amp;bibid=<!-- TMPL_VAR NAME="bibid" -->";
41         }
42 }
43 function Dopop(link) {
44         newin=window.open(link,'width=500,height=400,toolbar=false,scrollbars=yes');
45 }
46 </script>
47 </body>
48 </html>