Programmer template

This commit is contained in:
oleonard 2005-08-08 15:52:57 +00:00
parent 3d78e15b31
commit 835140e677
2 changed files with 120 additions and 0 deletions

View file

@ -0,0 +1,74 @@
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha Intranet Home<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<h1>Koha Intranet Home</h1>
<ul>
<li>Circulation
<ul>
<li><a href="/cgi-bin/koha/circ/circulation.pl">Circulation</a></li>
<li><a href="/cgi-bin/koha/circ/circulation.pl">Issues</a></li>
<li><a href="/cgi-bin/koha/circ/returns.pl">Returns</a></li>
<li><a href="/cgi-bin/koha/circ/branchtransfers.pl">Transfers</a></li>
<li><a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set Branch</a></li>
</ul>
</li>
<li>Members
<ul>
<li><a href="/cgi-bin/koha/members/members-home.pl">Member Search</a></li>
<li><a href="/cgi-bin/koha/members/memberentry.pl?actionType=Add">Add Member</a></li>
<li><a href="/cgi-bin/koha/members/memberentry.pl?categorycode=I&actionType=Add">Add Institution</a></li>
</ul>
</li>
<li>Catalogue
<ul>
<li><a href="/cgi-bin/koha/loadmodules.pl?module=search&amp;marc=1&amp;type=intranet">Advanced Search</a></li>
<li><a href="/cgi-bin/koha/bookshelves/shelves.pl">Virtual Shelves</a></li>
</ul>
</li>
<li>Cataloging
<ul>
<li><a href="/cgi-bin/koha/acqui.simple/addbooks.pl">Cataloging</a></li>
<li><a href="/cgi-bin/koha/acqui.simple/addbiblio.pl">Add Full MARC Record</a></li>
</ul></li>
<li>Acquisitions<ul>
<li><a href="/cgi-bin/koha/loadmodules.pl?module=acquisitions">Acquisitions</a></li><li><a href="/cgi-bin/koha/admin/aqbookfund.pl">Book funds</a></li>
<li><a href="/cgi-bin/koha/histsearch.pl">Search Order History</a></li>
<li><a href="/cgi-bin/koha/import/breeding.pl">Import to reservoir</a></li><li><a href="/cgi-bin/koha/bull-home.pl">Serials</a></li></ul>
</li>
<li><a href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a></li>
<li>Accounts and Reports
<ul>
<li>Catalogue Statistics
<ul>
<li><a href="/cgi-bin/koha/reports/inventory.pl">Inventory/Stocktaking</a></li>
<li><a href="/cgi-bin/koha/reports/manager.pl?report_name=itemtypes">Catalogue by itemtype</a></li>
</ul>
</li>
<li>Circulation Statistics
<ul>
<li><a href="/cgi-bin/koha/stats.pl?time=yesterday">Till Reconcipation: Daily Report (yesterday)</a></li>
<li><a href="/cgi-bin/koha/stats.pl?time=today">Till Reconcipation: Daily Report (today)</a></li>
<li><a href="/cgi-bin/koha/overdue.pl">Overdue items</a></li>
</ul>
</li>
<li>Statistics Wizards
<ul>
<li><a href="/cgi-bin/koha/reports/acquisitions_stats.pl">Acquisitions</a></li>
<li><a href="/cgi-bin/koha/reports/borrowers_stats.pl">Borrowers</a></li>
<li><a href="/cgi-bin/koha/reports/catalogue_stats.pl">Catalogue</a></li>
<li><a href="/cgi-bin/koha/reports/issues_stats.pl">Circulation</a></li>
</ul>
</li>
<li>Top Lists
<ul>
<li><a href="/cgi-bin/koha/reports/bor_issues_top.pl">Most issuing Borrowers</a></li>
<li><a href="/cgi-bin/koha/reports/cat_issues_top.pl">Most issued items</a></li>
</ul>
</li>
</ul>
</li>
<li>Koha Administration
<ul><li><a href="/cgi-bin/koha/admin-home.pl">System Adminstration Home</a></li>
<li><a href="/cgi-bin/koha/admin/systempreferences.pl">System Preferences</a></li><li><a href="/cgi-bin/koha/barcodes/barcodes.pl">Barcodes generator</a></li></ul></li>
</ul>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->

View file

@ -0,0 +1,46 @@
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Z39.50 Search Results</title>
<meta http-equiv="refresh" content="2; url=<!-- TMPL_VAR NAME="refresh" -->" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="shortcut icon" href="<!-- TMPL_VAR NAME='themelang' -->/includes/favicon.ico" type="image/x-icon" />
<style type="text/css">
@import url(<!-- TMPL_VAR NAME='themelang' -->/includes/intranet.css);
</style>
</head>
<body>
<h2>Z3950 Search Results</h2>
<!-- TMPL_IF NAME="breeding_loop" -->
<table>
<tr>
<th>Title</th>
<th>Author</th>
<th>ISBN</th>
<th>coming from</th>
<th>&nbsp;</th>
<th>&nbsp;</th>
</tr>
<!-- TMPL_LOOP NAME="breeding_loop" -->
<tr bgcolor="<!-- TMPL_VAR NAME="toggle" -->">
<td><!-- TMPL_VAR NAME="title" --></td>
<td><!-- TMPL_VAR NAME="author" --></td>
<td><!-- TMPL_VAR NAME="isbn" --></td>
<td><!-- TMPL_VAR NAME="file" --></td>
<td><a href="javascript:Import(<!-- TMPL_VAR NAME="id" -->)">Import this biblio</a></td>
</tr>
<!-- /TMPL_LOOP -->
</table>
<!-- TMPL_ELSE -->
<p>Nothing found</p>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="numberpending" --><h1>Still <!-- TMPL_VAR NAME="numberpending" --> requests to go</h1><!-- /TMPL_IF -->
<script language="javascript" type="text/javascript">
function Import(GetThisOne) {
opener.document.location= "../acqui.simple/addbiblio.pl?z3950=1&oldbiblionumber=<!-- TMPL_VAR NAME="oldbiblionumber" -->&breedingid="+GetThisOne;
self.close();
return false;
}
</script>
</body>
</html>