[Koha-cvs] koha/koha-tmpl/intranet-tmpl/prog/en circ/bookc...

paul poulain paul at koha-fr.org
Fri Mar 9 16:41:08 CET 2007


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	paul poulain <tipaul>	07/03/09 15:41:07

Added files:
	koha-tmpl/intranet-tmpl/prog/en/circ: bookcount.tmpl 
	                                      branchoverdues.tmpl 
	                                      overdue.tmpl reserve.tmpl 
	                                      stats.tmpl 
	koha-tmpl/intranet-tmpl/prog/en/errors: 400.tmpl 401.tmpl 
	                                        402.tmpl 403.tmpl 
	                                        404.tmpl 405.tmpl 
	                                        500.tmpl 
	koha-tmpl/intranet-tmpl/prog/en/export: marc.tmpl 

Log message:
	rel_3_0 moved to HEAD (introducing new files)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/circ/bookcount.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/circ/branchoverdues.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/circ/overdue.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/circ/reserve.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/circ/stats.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/400.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/401.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/402.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/403.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/404.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/405.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/500.tmpl?cvsroot=koha&rev=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/export/marc.tmpl?cvsroot=koha&rev=1.3

Patches:
Index: circ/bookcount.tmpl
===================================================================
RCS file: circ/bookcount.tmpl
diff -N circ/bookcount.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ circ/bookcount.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,36 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Circulation Statistics for <!-- TMPL_VAR Name="title" --><!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+<!-- TMPL_INCLUDE NAME="menu-circ.inc" -->
+
+<h1>
+<!-- TMPL_VAR Name="title" --> <!-- TMPL_IF NAME="author" -->(<!-- TMPL_VAR Name="author" -->)<!-- /TMPL_IF --></a></h1>
+<h2>Barcode <!-- TMPL_VAR Name="barcode" --></h2>
+<div class="tabitem"><form action="/cgi-bin/koha/catalogue/detail.pl" method="get"><input type="hidden" name="biblionumber" value="<!-- TMPL_VAR Name="biblionumber" -->"><input type="hidden" name="type" value="intra"><input type="submit" class="submit" value="Brief Display"></form> <form action="/cgi-bin/koha/catalogue/moredetail.pl" method="get"><input type="hidden" name="type" value="<!-- TMPL_VAR NAME="type" -->"><input type="hidden" name="item" value="<!-- TMPL_VAR NAME="itemnumber" -->"><input type="hidden" name="biblionumber" value="<!-- TMPL_VAR NAME="biblionumber" -->"><input type="hidden" name="bi" value="<!-- TMPL_VAR NAME="biblioitemnumber" -->"> <input type="submit" class="submit" value="Item Details"></form><!-- TMPL_IF NAME="norequests" --><!-- TMPL_ELSE --> <form action="/cgi-bin/koha/reserve/request.pl" method="get"><input type="hidden" value="<!-- TMPL_VAR name="biblionumber" -->" name="biblionumber"> <input type="submit" value="Place Reserve" class="submit"></form><!-- /TMPL_IF --></div>
+<div class="data">
+<table>
+		<tr><th>Home Branch: </th><td> <!-- TMPL_VAR Name="homebranch" --> </td></tr>
+		<tr><th>Current Branch: </th><td> <!-- TMPL_VAR Name="holdingbranch" --></td></tr>
+		<tr><th>Date arrived at current branch: </th><td> <!-- TMPL_VAR Name="lastdate" --> </td></tr>
+		<tr><th>Number of issues since since the above date :</th><td> <!-- TMPL_VAR Name="count" --> </td></tr>
+</table>
+</div>
+<div class="table">
+		<table>
+			<tr>
+				<th> Branch</th>
+				<th> No. of Issues</th>
+				<th> Last seen at branch</th>
+			</tr>
+			<!-- TMPL_LOOP Name="branchloop" -->
+				<tr>
+					<td class="data"><!-- TMPL_VAR Name="branchname" --> </td>
+					<td class="data"><!-- TMPL_VAR Name="issues" --> </td>
+					<td class="data"><!-- TMPL_VAR Name="seen" --> </td>
+				</tr>
+			<!-- /TMPL_LOOP -->
+		</table></div>
+		</td>
+	</tr>
+</table>
+
+<!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->

Index: circ/branchoverdues.tmpl
===================================================================
RCS file: circ/branchoverdues.tmpl
diff -N circ/branchoverdues.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ circ/branchoverdues.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,180 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Circulation
+<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+<!-- TMPL_INCLUDE NAME="menu-circ.inc" -->
+
+<h1>Circulation: Branch Overdues</h1>
+
+<div id="mainbloc">
+<!-- selector of departement -->
+<fieldset id="branch_odues_select_departement">
+<!-- TMPL_IF NAME="departement" -->
+<legend>departement selected</legend>
+<form name="changedepartment" action="branchoverdues.pl">
+    <ul>
+        <li>
+            You are working actually on the overdues for the departement : <b><!-- TMPL_VAR NAME="departement" --></b>
+    <input type="submit" name="changedepartement" class="button" value="change departement">
+        </li>
+    </ul>
+</form>
+<!-- TMPL_ELSE -->
+<legend>Select your departement</legend>
+<ul>
+    <li>
+        <form name="selectdepartement" action="branchoverdues.pl" method="post">
+        <select id="departement" name="departement">
+            <option value="">All departements</option>
+            <!-- TMPL_LOOP NAME="departementsloop" -->
+                <option value="<!-- TMPL_VAR NAME="authorised_value" -->"><!-- TMPL_VAR NAME="lib" --></option>
+            <!-- /TMPL_LOOP -->
+        </select>
+        <input type="submit" name="departement" class="button" value="change departement">
+        </form>
+    </li>
+</ul>
+<!-- /TMPL_IF -->
+</fieldset>
+
+    <fieldset id="branch_odues_global_odues">
+    <legend>Overdues of your library</legend>
+    <form name="sendnotify" action="branchoverdues.pl" method="post">
+    <!-- TMPL_IF name="overduesloop" -->
+        <table>
+        <tr>
+            <th class="circulation">Date_due</th>
+            <th class="circulation">Title</th>
+            <th class="circulation">Borrower</th>
+            <th class="circulation">Localisation</th>
+            <th class="circulation">Overdue status</th>
+            <th class="circulation">Notify by</th>
+        </tr>
+            <!-- TMPL_LOOP NAME="overduesloop" -->
+                <tr>
+                    <td>
+                        <p>
+                        <!-- TMPL_VAR NAME="date_due" -->
+                        </p>
+                    </td>
+                    <td>
+                        <p>
+                            <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a>
+                            &nbsp; (<b><!-- TMPL_VAR NAME="description" --></b>)
+                            <br />Barcode : <!-- TMPL_VAR NAME="barcode" -->
+                        </p>
+                    </td>
+                    <td>
+                        <p><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!--TMPL_VAR Name="borrowernumber"-->"><!-- TMPL_VAR NAME="borrowersurname" --> &nbsp; <!-- TMPL_VAR NAME="borrowerfirstname" --></a><br /><!-- TMPL_VAR NAME="borrowerphone" --><br />
+                    <!-- TMPL_IF NAME="borroweremail" --><a href="mailto:<!-- TMPL_VAR NAME="borroweremail" -->?subject=Overdue: <!-- TMPL_VAR NAME="title" -->">
+                    <!-- TMPL_VAR NAME="borroweremail" --></a><!--/TMPL_IF-->
+                        </p>
+                    </td>
+                    <td><p><!-- TMPL_VAR NAME="homebranch" --> <!-- TMPL_VAR NAME="itemcallnumber" --></p>
+                    </td>
+                    <td align="center">
+                    <b>
+                        <!-- TMPL_IF NAME="overdue1" -->
+                            first overdue
+                        <!-- /TMPL_IF -->
+                        <!-- TMPL_IF NAME="overdue2" -->
+                            second overdue
+                        <!-- /TMPL_IF -->
+                        <!-- TMPL_IF NAME="overdue3" -->
+                            Third overdue
+                        <!-- /TMPL_IF -->
+                    </b>
+                    </td>
+                    <td align="center">
+                    <!-- TMPL_IF NAME="overdue1" -->
+                        <!-- TMPL_IF NAME="borroweremail" -->
+                            <a href="branchoverdues.pl?action=add&borrowernumber=<!-- TMPL_VAR NAME="borrowernumber"-->&itemnumber=<!-- TMPL_VAR NAME="itemnumber" -->&method=mail&departement=<!-- TMPL_VAR NAME="departementValue" -->&overduelevel=<!-- TMPL_VAR NAME="overdueLevel" -->&notifyId=<!-- TMPL_VAR NAME="notify_id" -->">mail</a>
+                        <!-- TMPL_ELSE -->
+                            mail
+                        <!-- /TMPL_IF -->
+                            &nbsp;|&nbsp;
+                            <a href="branchoverdues.pl?action=add&borrowernumber=<!-- TMPL_VAR NAME="borrowernumber"-->&itemnumber=<!-- TMPL_VAR NAME="itemnumber" -->&method=phone&departement=<!-- TMPL_VAR NAME="departementValue" -->&overduelevel=<!-- TMPL_VAR NAME="overdueLevel" -->&notifyId=<!-- TMPL_VAR NAME="notify_id" -->
+                            ">phone</a>
+                            &nbsp;|&nbsp;
+                            <a href="branchoverdues.pl?action=add&borrowernumber=<!-- TMPL_VAR NAME="borrowernumber"-->&itemnumber=<!-- TMPL_VAR NAME="itemnumber" -->&method=letter&departement=<!-- TMPL_VAR NAME="departementValue" -->&overduelevel=<!-- TMPL_VAR NAME="overdueLevel" -->
+                            &notifyId=<!-- TMPL_VAR NAME="notify_id" -->">letter</a>
+                    <!-- /TMPL_IF -->
+                    
+                    <!-- TMPL_IF NAME="overdue2" -->
+                        <a href="branchoverdues.pl?action=add&borrowernumber=<!-- TMPL_VAR NAME="borrowernumber"-->&itemnumber=<!-- TMPL_VAR NAME="itemnumber" -->&method=letter&departement=<!-- TMPL_VAR NAME="departementValue" -->&overduelevel=<!-- TMPL_VAR NAME="overdueLevel" -->&notifyId=<!-- TMPL_VAR NAME="notify_id" -->">letter</a>
+                    <!-- /TMPL_IF -->
+                    
+                    <!-- TMPL_IF NAME="overdue3" -->
+                    <a href="branchoverdues.pl?action=add&borrowernumber=<!-- TMPL_VAR NAME="borrowernumber"-->&itemnumber=<!-- TMPL_VAR NAME="itemnumber" -->&method=lost&departement=<!-- TMPL_VAR NAME="departementValue" -->&overduelevel=<!-- TMPL_VAR NAME="overdueLevel" -->
+                    &notifyId=<!-- TMPL_VAR NAME="notify_id" -->">Considered lost</a>
+                    <!-- /TMPL_IF -->
+                    
+                    </td>
+                </tr>
+            <!-- /TMPL_LOOP -->
+        </table>
+    <!-- TMPL_ELSE -->
+        There is no overdues for your library today
+    <!-- /TMPL_IF -->
+    </fieldset>
+<!-- TMPL_IF name="todayoverduesloop" -->
+    <fieldset id="branch_odues_today_odues">
+    <legend>Notifys of the day</legend>	
+        <table>
+        <tr>
+            <th class="circulation">Date_due</th>
+            <th class="circulation">Title</th>
+            <th class="circulation">Borrower</th>
+            <th class="circulation">Localisation</th>
+            <th class="circulation">Overdue status</th>
+            <th class="circulation">Notified by</th>
+            <th class="circulation">Cancel</th>			
+        </tr>
+            <!-- TMPL_LOOP NAME="todayoverduesloop" -->
+                <tr>
+                    <td>
+                        <p>
+                        <!-- TMPL_VAR NAME="date_due" -->
+                        </p>
+                    </td>
+                    <td>
+                        <p>
+                            <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a>
+                            &nbsp; (<b><!-- TMPL_VAR NAME="description" --></b>)
+                            <br />Barcode : <!-- TMPL_VAR NAME="barcode" -->
+                        </p>
+                    </td>
+                    <td>
+                        <p><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!--TMPL_VAR Name="borrowernumber"-->"><!-- TMPL_VAR NAME="borrowersurname" --> &nbsp; <!-- TMPL_VAR NAME="borrowerfirstname" --></a><br /><!-- TMPL_VAR NAME="borrowerphone" --><br />
+                    <!-- TMPL_IF NAME="borroweremail" --><a href="mailto:<!-- TMPL_VAR NAME="borroweremail" -->?subject=Overdue: <!-- TMPL_VAR NAME="title" -->">
+                    <!-- TMPL_VAR NAME="borroweremail" --></a><!--/TMPL_IF-->
+                        </p>
+                    </td>
+                    <td><p><!-- TMPL_VAR NAME="homebranch" --> <!-- TMPL_VAR NAME="itemcallnumber" --></p>
+                    </td>
+                    <td align="center">
+                        <b>
+                            <!-- TMPL_IF NAME="overdue1" -->
+                                first overdue
+                            <!-- /TMPL_IF -->
+                            <!-- TMPL_IF NAME="overdue2" -->
+                                second overdue
+                            <!-- /TMPL_IF -->
+                            <!-- TMPL_IF NAME="overdue3" -->
+                                considered lost
+                            <!-- /TMPL_IF -->
+                        </b>
+                    </td>
+                    <td align="center">
+                        <b><!-- TMPL_VAR NAME="notify_method" --></b>
+                    </td>
+                
+                    <td>
+                    <a href="branchoverdues.pl?action=remove&borrowernumber=<!-- TMPL_VAR NAME="borrowernumber"-->&itemnumber=<!-- TMPL_VAR NAME="itemnumber" -->&method=phone&departement=<!-- TMPL_VAR NAME="departementValue" -->&notify_date=<!-- TMPL_VAR NAME="notify_date" -->">cancel notification</a>
+                    </td>
+                </tr>
+            <!-- /TMPL_LOOP -->
+        </table>
+    </fieldset>
+<!-- /TMPL_IF -->
+</div>
+<!-- TMPL_INCLUDE name="intranet-bottom.inc" -->

Index: circ/overdue.tmpl
===================================================================
RCS file: circ/overdue.tmpl
diff -N circ/overdue.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ circ/overdue.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,30 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --><!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+<!--TMPL_INCLUDE NAME="menus.inc" -->
+<!-- TMPL_INCLUDE NAME="menu-circ.inc"-->
+<h2>Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></h2>
+
+<div class="searchresults">
+<table>
+<tr>
+    <th>Due Date</th>
+    <th>Patron</th>
+    <th>Title</th>
+</tr>
+
+<!-- TMPL_LOOP NAME="overdueloop" -->
+    <tr>
+        <td width="15%"><!-- TMPL_VAR NAME="duedate" --></td>
+        <!-- TMPL_IF NAME="email" -->
+        <td><a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Overdue: <!-- TMPL_VAR NAME="title" -->"><!-- TMPL_VAR NAME="name" --></a> (<!-- TMPL_VAR NAME="phone" -->)</td>
+        <!-- TMPL_ELSE -->
+        <td><!-- TMPL_VAR NAME="name" --> (<!-- TMPL_VAR NAME="phone" -->)</td>
+        <!-- /TMPL_IF -->
+        <td>
+            <p><!-- TMPL_VAR NAME="title" --></p>
+            <p><!-- TMPL_VAR NAME="author" --></p>
+        </td>
+    </tr>
+<!-- /TMPL_LOOP -->
+</table>
+</div>
+<!-- TMPL_INCLUDE name="intranet-bottom.inc" -->

Index: circ/reserve.tmpl
===================================================================
RCS file: circ/reserve.tmpl
diff -N circ/reserve.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ circ/reserve.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,171 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Circulation: Reserve
+<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<!-- Additions to enable Calendar system -->
+<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar-system.css">
+<!-- End of additions --><!-- Additions to enable Calendar system -->
+<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar.js"></script>
+<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar-en.js"></script>
+<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar-setup.js"></script>
+<!-- End of additions -->
+
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+<!-- TMPL_INCLUDE NAME="menu-circ.inc" -->
+
+<h1>Pending reserves as of <!-- TMPL_VAR NAME="todaysdate" --></h1>
+<div id="filters">
+<br />
+<form method="post" >
+<p>
+<label for "from">
+    Start date:
+</label>
+<input type="text"
+        size="10"
+        id="from"
+        name="from"
+        value="<!-- TMPL_VAR NAME="from" -->" />
+<img src="<!-- TMPL_VAR Name="themelang" -->/includes/calendar/cal.gif" 
+        border="0" id="openCalendarFrom" style="cursor: pointer;" valign="top" />
+<script language="JavaScript" type="text/javascript">
+function validate1(date) {
+    var day = date.getDate();
+    var month = date.getMonth() + 1;
+    var year = date.getFullYear();
+    var weekDay = date.getDay();
+    var dayMonth = month + '-' + day;
+    var dateString = year + '-' + month + '-' + day;
+    var dateTo = document.getElementById('to').value.split("-");
+    var limitDate = new Date(dateTo[0], (dateTo[1] - 1), dateTo[2]);
+    if (date > limitDate) {
+            return true;
+    } else {
+            return false;
+    }
+}
+Calendar.setup(
+        {
+        inputField : "from",
+        ifFormat : "%Y-%m-%d",
+        button : "openCalendarFrom",
+        disableFunc : validate1,
+        dateStatusFunc : validate1
+        }
+);
+</script>
+<label for "to" >
+    End date:
+</label>
+<input size="10" id="to" name="to" value="<!-- TMPL_VAR NAME="to" -->" type="text" />
+<img src="<!-- TMPL_VAR Name="themelang" -->/includes/calendar/cal.gif"
+        id="openCalendarTo"
+        style="cursor: pointer;"
+        valign="top" border="0" />
+<script type="text/javascript">
+        function validate2(date) {
+            var day = date.getDate();
+            var month = date.getMonth() + 1;
+            var year = date.getFullYear();
+            var weekDay = date.getDay();
+            var dayMonth = month + '-' + day;
+            var dateString = year + '-' + month + '-' + day;
+            var dateFrom = document.getElementById('from').value.split("-");
+            var limitDate = new Date(dateFrom[0], (dateFrom[1] - 1), dateFrom[2]);
+            if (limitDate > date) {
+                    return true;
+            } else {
+                    return false;
+            }
+        }
+
+        Calendar.setup(
+                {
+                    inputField : "to",
+                    ifFormat : "%Y-%m-%d",
+                    button : "openCalendarTo",
+                    disableFunc : validate2,
+                    dateStatusFunc : validate2
+                }
+        );
+</script>
+(inclusive)
+<input type="submit" value="Go" class="submit">
+</p>
+</form>
+<p>The following reserves have not be affected to any item.</p>
+<p>Please go in the shelves, pickup a book and do a return on them :</p>
+</div>
+
+<div class="searchresults">
+    <!-- TMPL_IF NAME="reserveloop" -->
+    <table>
+    <tr>
+        <th >
+            Priority
+            <a href="/cgi-bin/koha/circ/reserve.pl?order=priority">Sort</a>
+        </th>
+        <th >Reserve Date
+            <a href="/cgi-bin/koha/circ/reserve.pl?order=date">Sort</a>
+        </th>
+        <th >Patron
+        <a href="/cgi-bin/koha/circ/reserve.pl?order=borrower">Sort</a>
+        </th>
+        <th >Title
+        <a href="/cgi-bin/koha/circ/reserve.pl?order=biblio">Sort</a>
+        </th>
+        <th >
+            Location
+        </th>
+    </tr>
+    
+    <!-- TMPL_LOOP NAME="reserveloop" -->
+        <tr>
+            <!-- TMPL_IF name="borrowernumber" -->
+                <td><p><!-- TMPL_VAR NAME="priority" --></p></td>
+                <td width="15%">
+                    <p><!-- TMPL_VAR NAME="reservedate" --></p>
+                    <p>in <!-- TMPL_VAR NAME="branch" --></p>
+                    <!-- TMPL_IF NAME="statusw" --><p>Waiting</p><!-- /TMPL_IF --><!-- TMPL_IF NAME="statusf" --><p>Fullfilled</p><!-- /TMPL_IF -->
+                </td>
+                <td>
+                    <p><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!--TMPL_VAR Name="borrowernumber"-->"><!-- TMPL_VAR NAME="name" --></a><br /><!-- TMPL_VAR NAME="phone" --><br />
+                <!-- TMPL_IF NAME="email" --><a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Reservation: <!-- TMPL_VAR NAME="title" -->">
+    <!-- TMPL_VAR NAME="email" --></a><!--/TMPL_IF-->
+                    </p>
+                </td>
+                <td>
+                    <p>
+                    <!-- TMPL_IF name="BiblioDefaultViewmarc" -->
+                    <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
+                        <!-- TMPL_VAR NAME="title" --> <!-- TMPL_VAR NAME="subtitle" -->
+                    </a>
+                    <!-- TMPL_ELSE -->
+                        <!-- TMPL_IF name="BiblioDefaultViewisbd" -->
+                        <a href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
+                            <!-- TMPL_VAR NAME="title" --> <!-- TMPL_VAR NAME="subtitle" -->
+                        </a>
+                        <!-- TMPL_ELSE -->
+                            <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
+                                <!-- TMPL_VAR NAME="title" --> <!-- TMPL_VAR NAME="subtitle" -->
+                            </a>
+                        <!-- /TMPL_IF -->
+                    <!-- /TMPL_IF -->
+                    </p>
+                    <p><!-- TMPL_VAR NAME="notes" --></p>
+                </td>
+            <!-- TMPL_ELSE -->
+                <td colspan="2">
+                    &nbsp;
+                </td>
+                <td>"</td>
+                <td>"</td>
+            <!-- /TMPL_IF -->
+            <td><p><!-- TMPL_VAR NAME="holdingbranch" --> <!-- TMPL_VAR NAME="itemcallnumber" --></p></td>
+        </tr>
+    <!-- /TMPL_LOOP -->
+    </table>
+    <!-- TMPL_ELSE -->
+        <b>No items found.</b>
+    <!-- /TMPL_IF -->
+</div>
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->

Index: circ/stats.tmpl
===================================================================
RCS file: circ/stats.tmpl
diff -N circ/stats.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ circ/stats.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,37 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Statistics<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+<!--TMPL_INCLUDE NAME="menus.inc" -->
+<!-- TMPL_INCLUDE NAME="menu-circ.inc"-->
+
+    <!-- TMPL_IF NAME="notime" -->
+        <h1>Display stats for</h1>
+        <ul>
+            <li><a href="/cgi-bin/koha/circ/stats.pl?time=yesterday">yesterday</a></li>
+            <li><a href="/cgi-bin/koha/circ/stats.pl?time=today">today</a></li>
+    <!-- TMPL_ELSE -->
+    	<!-- TMPL_IF NAME="loop1" -->
+    	<table>
+    	<caption>Statistics</caption>
+    		<tr>
+    			<th>Name</th>
+    			<th>Type</th>
+    			<th>Date/time</th>
+    			<th>Amount</th>
+    			<th>Branch</th>
+    		<tr>
+    		<!-- TMPL_LOOP name="loop1" -->
+    		<tr>
+    			<td><!-- TMPL_VAR NAME="name" --></td>
+    			<td><!-- TMPL_VAR NAME="type" --></td>
+    			<td><!-- TMPL_VAR NAME="time" --></td>
+    			<td><!-- TMPL_VAR NAME="amount" --></td>
+    			<td><!-- TMPL_VAR NAME="branch" --></td>
+    		</tr>
+    		<!-- /TMPL_LOOP -->
+    		</table>
+    		<p>Total paid: <!-- TMPL_VAR NAME="total" --><br>Total written off: <!-- TMPL_VAR NAME="totalw" --></p>
+    	<!-- TMPL_ELSE -->
+    	<h3>No statistics to report</h3>
+    	<!-- /TMPL_IF -->
+	
+    <!-- /TMPL_IF -->
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->

Index: errors/400.tmpl
===================================================================
RCS file: errors/400.tmpl
diff -N errors/400.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ errors/400.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,18 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Error
+<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+
+<div id="mainbloc">
+<h1>An Error has Occurred!</h1>
+<h2>Error 404</h2>
+<div id="main">
+<ul>
+<li>This error means that the link was broken and that the page doesn't exist</li>	
+<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin" -->">email the Koha Administrator</a>.</li>
+<li>Use top menu bar to navigate to another part of Koha.</li>
+</ul>
+</div>
+</div>
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
+

Index: errors/401.tmpl
===================================================================
RCS file: errors/401.tmpl
diff -N errors/401.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ errors/401.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,18 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Error
+<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+
+<div id="mainbloc">
+<h1>An Error has Occurred!</h1>
+<h2>Error 401</h2>
+<div id="main">
+<ul>
+<li>This error means that you aren't authorized to view this page</li>	
+<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin" -->">email the Koha Administrator</a>.</li>
+<li>Use top menu bar to navigate to another part of Koha.</li>
+</ul>
+</div>
+</div>
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
+

Index: errors/402.tmpl
===================================================================
RCS file: errors/402.tmpl
diff -N errors/402.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ errors/402.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,18 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Error
+<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+
+<div id="mainbloc">
+<h1>An Error has Occurred!</h1>
+<h2>Error 404</h2>
+<div id="main">
+<ul>
+<li>This error means that the link was broken and that the page doesn't exist</li>	
+<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin" -->">email the Koha Administrator</a>.</li>
+<li>Use top menu bar to navigate to another part of Koha.</li>
+</ul>
+</div>
+</div>
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
+

Index: errors/403.tmpl
===================================================================
RCS file: errors/403.tmpl
diff -N errors/403.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ errors/403.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,18 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Error
+<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+
+<div id="mainbloc">
+<h1>An Error has Occurred!</h1>
+<h2>Error 404</h2>
+<div id="main">
+<ul>
+<li>This error means that the link was broken and that the page doesn't exist</li>	
+<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin" -->">email the Koha Administrator</a>.</li>
+<li>Use top menu bar to navigate to another part of Koha.</li>
+</ul>
+</div>
+</div>
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
+

Index: errors/404.tmpl
===================================================================
RCS file: errors/404.tmpl
diff -N errors/404.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ errors/404.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,18 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Error
+<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+
+<div id="mainbloc">
+<h1>An Error has Occurred!</h1>
+<h2>Error 404</h2>
+<div id="main">
+<ul>
+<li>This error means that the link was broken and that the page doesn't exist</li>	
+<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin" -->">email the Koha Administrator</a>.</li>
+<li>Use top menu bar to navigate to another part of Koha.</li>
+</ul>
+</div>
+</div>
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
+

Index: errors/405.tmpl
===================================================================
RCS file: errors/405.tmpl
diff -N errors/405.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ errors/405.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,18 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Error
+<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+
+<div id="mainbloc">
+<h1>An Error has Occurred!</h1>
+<h2>Error 404</h2>
+<div id="main">
+<ul>
+<li>This error means that the link was broken and that the page doesn't exist</li>	
+<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin" -->">email the Koha Administrator</a>.</li>
+<li>Use top menu bar to navigate to another part of Koha.</li>
+</ul>
+</div>
+</div>
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
+

Index: errors/500.tmpl
===================================================================
RCS file: errors/500.tmpl
diff -N errors/500.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ errors/500.tmpl	9 Mar 2007 15:41:07 -0000	1.2
@@ -0,0 +1,17 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Error
+<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+
+<div id="mainbloc">
+<h1>An Error has Occurred!</h1>
+<h2>Error 500</h2>
+<div id="main">
+<ul>
+<li>In Koha this typically means that the Koha team is working on new features</li>	
+<li>Wait while system maintenance is being done or <a href="mailto:<!-- TMPL_VAR NAME="admin" -->">email the Koha Administrator</a>.</li>
+<li>Use top menu bar to navigate to another part of Koha.</li>
+</ul>
+</div>
+</div>
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->

Index: export/marc.tmpl
===================================================================
RCS file: export/marc.tmpl
diff -N export/marc.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ export/marc.tmpl	9 Mar 2007 15:41:07 -0000	1.3
@@ -0,0 +1,14 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Cataloging: MARC Export<!-- TMPL_INCLUDE NAME="doc-head-close-addbiblio.inc" -->
+
+<h1>MARC Export</h1>
+<h4>Export in MARC format the following biblios:</h4>
+<form method="post">
+<p>From biblio number: <input type="text" name="StartingBiblionumber" />
+to biblio number: <input type="text" name="EndingBiblionumber" /></p>
+<p>(leave blank to export every biblio)</p>
+<input type="hidden" name="op" value="export" />
+<input type="submit" value="Export" />
+</form>
+<p>Note : the items are NOT exported by this tool</p>
+
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->





More information about the Koha-cvs mailing list