[Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en opac-detail.tmpl,1.11,1.12 opac-searchresults.tmpl,1.14,1.15

Paul POULAIN tipaul at users.sourceforge.net
Mon Sep 6 12:00:31 CEST 2004


Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28965/koha-tmpl/opac-tmpl/css/en

Modified Files:
	opac-detail.tmpl opac-searchresults.tmpl 
Log Message:
adding a "location" field to the library.
This field is useful when the callnumber contains no information on the room where the item is stored.
With this field, we now have 3 levels of informations to find a book :
* the branch.
* the location.
* the callnumber.

This should be versatile enough to solve any storing method.
This hack is quite simple, due to the nice Biblio.pm API. The MARC => koha db link is automatically managed. Just add the link in the parameters section.

Index: opac-detail.tmpl
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** opac-detail.tmpl	2 Sep 2004 16:30:57 -0000	1.11
--- opac-detail.tmpl	6 Sep 2004 10:00:28 -0000	1.12
***************
*** 107,111 ****
  		<!-- TMPL_LOOP NAME="ITEM_RESULTS" -->
  			<tr>
! 				<td><!-- TMPL_VAR NAME="branchname" --> <!-- TMPL_IF name="itemcallnumber" -->(<!-- TMPL_VAR NAME="itemcallnumber" -->)<!-- /TMPL_IF --></td>
  				<td><!-- TMPL_VAR NAME="datedue" --></td>
  				<td><!-- TMPL_VAR NAME="datelastseen" --></td>
--- 107,111 ----
  		<!-- TMPL_LOOP NAME="ITEM_RESULTS" -->
  			<tr>
! 				<td><!-- TMPL_VAR NAME="branchname" --> <!-- TMPL_VAR NAME="location" --> <!-- TMPL_IF name="itemcallnumber" -->(<!-- TMPL_VAR NAME="itemcallnumber" -->)<!-- /TMPL_IF --></td>
  				<td><!-- TMPL_VAR NAME="datedue" --></td>
  				<td><!-- TMPL_VAR NAME="datelastseen" --></td>

Index: opac-searchresults.tmpl
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** opac-searchresults.tmpl	2 Sep 2004 16:30:57 -0000	1.14
--- opac-searchresults.tmpl	6 Sep 2004 10:00:28 -0000	1.15
***************
*** 66,70 ****
  				<td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
  					<!-- TMPL_LOOP name="CN" -->
! 						<!-- TMPL_VAR name="holdingbranch" --> <!-- TMPL_IF name="itemcallnumber" -->(<!-- TMPL_VAR name="itemcallnumber" -->)<!-- /TMPL_IF -->
  					<!-- /TMPL_LOOP -->
  				</td>
--- 66,70 ----
  				<td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
  					<!-- TMPL_LOOP name="CN" -->
! 						<!-- TMPL_VAR name="holdingbranch" --> <!-- TMPL_VAR name="location" --> <!-- TMPL_IF name="itemcallnumber" -->(<!-- TMPL_VAR name="itemcallnumber" -->)<!-- /TMPL_IF -->
  					<!-- /TMPL_LOOP -->
  				</td>





More information about the Koha-cvs mailing list