View | Details | Raw Unified | Return to bug 6768
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/error-bottom.inc (-16 lines)
Lines 1-16 Link Here
1
<br clear="all" />
2
3
<div class="center">
4
<a href="/cgi-bin/koha/mainpage.pl">Home</a> ||
5
<a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> ||
6
<a href="/cgi-bin/koha/members/members-home.pl">Members</a> ||
7
<a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> ||
8
<a href="/cgi-bin/koha/circ/circulation.pl">Circulation</a> ||
9
<a href="/cgi-bin/koha/reports-home.pl">Reports</a> ||
10
<a href="/cgi-bin/koha/admin-home.pl">Parameters</a> ||
11
<a href="/cgi-bin/koha/about.pl">About Koha</a> || 
12
Help
13
</div>
14
15
</body>
16
</html>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/error-top.inc (-66 lines)
Lines 1-65 Link Here
1
<!DOCTYPE html PUBLIC "-//W3C//DTD Xhtml 1.0 Transitional//EN"
2
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
<head>
5
<title>KOHA: INTRANET: Catalog</title>
6
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
8
<script language="JavaScript">
9
<!-- Hide from old browsers
10
function openWindow(targeturl, windowname) {
11
newwin =
12
window.open(targeturl,windowname,"height=480,width=640,scrollbars,resizable")
13
}
14
// end hiding -->
15
</script>
16
17
<script language="JavaScript" type="text/javascript">
18
function Help() {
19
	newin=window.open("/cgi-bin/koha/help.pl","KohaHelp",'width=600,height=600,toolbar=false,scrollbars=yes');
20
}
21
</script>
22
23
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/staff.css" />
24
<style type="text/css">
25
.catalogue {
26
	background-color:#ad11ad;
27
	color:#FFFFFF;
28
	background-image:none;
29
	text-decoration: normal;
30
	}
31
a.catalogue:hover {
32
	background-color: #ad11ad;
33
	color: #FFFFFF;
34
	text-decoration: none;
35
	}
36
</style>
37
</head>
38
39
<body>
40
<!-- MENUS -->
41
<div id="menubar">
42
	<span class="koha">KOHA</span>
43
	<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
44
	<a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a>
45
	<a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a>
46
	<a  href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>
47
	<a class="members" href="/cgi-bin/koha/members/members-home.pl">Members</a>
48
	<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
49
	<a class="reports" href="/cgi-bin/koha/reports-home.pl">Reports</a>
50
	<a class="parameters" href="/cgi-bin/koha/admin-home.pl">Parameters</a>
51
	<a class="about" href="/cgi-bin/koha/about.pl">About</a>
52
	<a href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
53
</div>
54
<div id="submenu">
55
	<span class="koha">options &gt;&gt;&nbsp;&nbsp;</span>
56
	<a href="/cgi-bin/koha/catalogue/search.pl" class="submenu2">search</a>
57
	<a href="/cgi-bin/koha/virtualshelves/shelves.pl" class="submenu">Lists</a>
58
	<a href="/cgi-bin/koha/cataloguing/addbiblio.pl" class="submenu2">Add biblio</a>
59
	<a href="/cgi-bin/koha/maint/catmaintain.pl" class="submenu">Cat maintenance</a>
60
</div>
61
[% IF ( loggedinusername ) %]
62
    <p align="left">Logged in as: [% loggedinusername %] [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
63
[% ELSE %]
64
    <p align="left"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
65
[% END %]
66
- 

Return to bug 6768