7dec3d8aee
This is the first patch for bug 7760 and touches all pages in authorities. This adds a unique id "auth_<filename>" and a class "auth" to the body tag of each page in the authorities module. Signed-off-by: Owen Leonard <oleonard@myacpl.org>
41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Authorities</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<script language="JavaScript" type="text/javascript">
|
|
//<![CDATA[
|
|
function Help() {
|
|
newin=window.open("/cgi-bin/koha/help.pl","KohaHelp",'width=600,height=600,toolbar=false,scrollbars=yes');
|
|
}
|
|
|
|
function addauthority() {
|
|
X = document.forms[0].authtype.value;
|
|
window.location="/cgi-bin/koha/authorities/authorities.pl?authtypecode="+X;
|
|
}
|
|
function searchauthority() {
|
|
X = document.forms[0].authtype2.value;
|
|
Y = document.forms[0].value.value;
|
|
window.location="/cgi-bin/koha/authorities/authorities-home.pl?op=do_search&type=intranet&authtypecode="+X+"&value="+Y+"&marclist=&and_or=and&excluding=&operator=contains";
|
|
}
|
|
function confirm_deletion() { // not really implemented, but required by phantom delAuthButton code in authorities-toolbar.inc
|
|
return true;
|
|
}
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body id="auth_authorities_home" class="auth">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'authorities-search.inc' %]
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › Authorities</div>
|
|
|
|
<div id="doc" class="yui-t7">
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-g">
|
|
|
|
[% INCLUDE 'authorities-toolbar.inc' %]
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|