[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/reports inventory.tmpl,1.2,1.3

Paul POULAIN tipaul at users.sourceforge.net
Thu Jun 17 10:23:28 CEST 2004


Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/reports
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16757/koha-tmpl/intranet-tmpl/default/en/reports

Modified Files:
	inventory.tmpl 
Log Message:
css'ing reports

Index: inventory.tmpl
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/reports/inventory.tmpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** inventory.tmpl	2 Apr 2004 15:21:23 -0000	1.2
--- inventory.tmpl	17 Jun 2004 08:23:26 -0000	1.3
***************
*** 1,112 ****
  <!-- TMPL_INCLUDE NAME="reports-top.inc" -->
! <h1>Inventory/Stocktaking</h1>
! <form method="post">
  	<table>
  		<tr>
! 			<th colspan=2>
! 				Select items you want to check
! 			</th>
  		</tr>
  		<tr>
  			<td>
! 					Item Location (items.itemcallnumber) between
  			</td>
  			<td>
! 				 <input type="text" name="minlocation" value="<!-- TMPL_VAR name="minlocation" -->"> and <input type="text" name="maxlocation" value="<!-- TMPL_VAR name="maxlocation" -->">
  			</td>
- 		</tr>
- 		<tr>
  			<td>
! 					not seen since
  			</td>
  			<td>
! 				<input type="text" name="datelastseen" value="<!-- TMPL_VAR name="datelastseen" -->">
  			</td>
- 		</tr>
- 		<tr>
- 			<td>
- 					show
- 			</td>
- 			<td>
- 				<input type="text" name="pagesize" value="<!-- TMPL_VAR name="pagesize" -->">
- 				<i> items beginning at offset</i>
- 				 <input type="text" name="offset" value="<!-- TMPL_VAR name="offset" -->">
- 			</td>
- 		</tr>
- 		<tr colspan=2>
  			<td>
! 				<input type="submit" value="OK" class="button">
  			</td>
  		</tr>
  	</table>
! </form>
! 
! <form method="post">
! <input type="hidden" name="markseen" value="1">
! <input type="hidden" name="minlocation" value="<!-- TMPL_VAR name="minlocation" -->">
! <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR name="maxlocation" -->">
! <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR name="datelastseen" -->">
! <input type="hidden" name="pagesize" value="<!-- TMPL_VAR name="pagesize" -->">
! <input type="hidden" name="offset" value="<!-- TMPL_VAR name="offset" -->">
! <!-- TMPL_IF name="loop" -->
! <table width="100%">
! 	<tr>
! 		<th>Seen</th>
! 		<th>Barcode</th>
! 		<th>Bulk</th>
! 		<th>Title</th>
! 		<th>Author</th>
! 	</tr>
! <!-- TMPL_LOOP name="loop" -->
! 	<tr>
! 		<td>
! 			<input type="checkbox" name="SEEN-<!-- TMPL_VAR name="itemnumber" -->" value="1">
! 		</td>
! 		<td>
! 			<!-- TMPL_VAR name="barcode" -->
! 		</td>
! 		<td>
! 			<!-- TMPL_VAR name="itemcallnumber" -->
! 		</td>
! 		<td>
! 			<!-- TMPL_VAR name="title" -->
! 		</td>
! 		<td>
! 			<!-- TMPL_VAR name="author" -->
! 		</td>
! 	</tr>
! <!-- /TMPL_LOOP -->
! </table>
! <input type="submit" value="Mark seen" class="button">
! </form>
! <!-- /TMPL_IF -->
! 
! <table>
! <tr>
! 	<td>
! 		<!-- TMPL_IF name="offset" -->
! 		<form method="post">
! 			<input type="hidden" name="minlocation" value="<!-- TMPL_VAR name="minlocation" -->">
! 			<input type="hidden" name="maxlocation" value="<!-- TMPL_VAR name="maxlocation" -->">
! 			<input type="hidden" name="datelastseen" value="<!-- TMPL_VAR name="datelastseen" -->">
! 			<input type="hidden" name="pagesize" value="<!-- TMPL_VAR name="pagesize" -->">
! 			<input type="hidden" name="offset" value="<!-- TMPL_VAR name="prevoffset" -->">
! 			<input type="submit" value="&lt;&lt;&lt;" class="button">
! 		</form>
! 		<!-- /TMPL_IF -->
! 	</td>
! 	<td>
! 		<!-- TMPL_IF name="nextoffset" -->
! 		<form method="post">
! 			<input type="hidden" name="minlocation" value="<!-- TMPL_VAR name="minlocation" -->">
! 			<input type="hidden" name="maxlocation" value="<!-- TMPL_VAR name="maxlocation" -->">
! 			<input type="hidden" name="datelastseen" value="<!-- TMPL_VAR name="datelastseen" -->">
! 			<input type="hidden" name="pagesize" value="<!-- TMPL_VAR name="pagesize" -->">
! 			<input type="hidden" name="offset" value="<!-- TMPL_VAR name="nextoffset" -->">
! 			<input type="submit" value="&gt;&gt;&gt;" class="button">
! 		</form>
! 		<!-- /TMPL_IF -->
! 	</td>
! </tr>
! </table>
  <!-- TMPL_INCLUDE NAME="reports-bottom.inc" -->
--- 1,85 ----
  <!-- TMPL_INCLUDE NAME="reports-top.inc" -->
! <div id="mainbloc">
! 	<h1 class="reports">Inventory/Stocktaking</h1>
! 	<form method="post">
! 		<h2 class="reports">Select items you want to check</h2>
! 		<p>
! 			Item Location (items.itemcallnumber) between 
! 				<input type="text" name="minlocation" value="<!-- TMPL_VAR name="minlocation" -->"> 
! 			and 
! 				<input type="text" name="maxlocation" value="<!-- TMPL_VAR name="maxlocation" -->">
! 		</p>
! 		<p><label>not seen since</label>
! 			<input type="text" name="datelastseen" value="<!-- TMPL_VAR name="datelastseen" -->">
! 		</p>
! 		<p><label>show</label>
! 			<input type="text" name="pagesize" value="<!-- TMPL_VAR name="pagesize" -->" maxlength=5 size=5>
! 			<i> items beginning at offset</i>
! 			<input type="text" name="offset" value="<!-- TMPL_VAR name="offset" -->" size=5 maxlength=5>
! 		</p>
! 		<p>
! 			<input type="submit" value="OK" class="button reports">
! 		</p>
! 	</form>
! 	
! 	<form method="post">
! 	<input type="hidden" name="markseen" value="1">
! 	<input type="hidden" name="minlocation" value="<!-- TMPL_VAR name="minlocation" -->">
! 	<input type="hidden" name="maxlocation" value="<!-- TMPL_VAR name="maxlocation" -->">
! 	<input type="hidden" name="datelastseen" value="<!-- TMPL_VAR name="datelastseen" -->">
! 	<input type="hidden" name="pagesize" value="<!-- TMPL_VAR name="pagesize" -->">
! 	<input type="hidden" name="offset" value="<!-- TMPL_VAR name="offset" -->">
! 	<!-- TMPL_IF name="loop" -->
  	<table>
  		<tr>
! 			<th class="reports">Seen</th>
! 			<th class="reports">Barcode</th>
! 			<th class="reports">Call number</th>
! 			<th class="reports">Title</th>
! 			<th class="reports">Author</th>
  		</tr>
+ 	<!-- TMPL_LOOP name="loop" -->
  		<tr>
  			<td>
! 				<input type="checkbox" name="SEEN-<!-- TMPL_VAR name="itemnumber" -->" value="1">
  			</td>
  			<td>
! 				<!-- TMPL_VAR name="barcode" -->
  			</td>
  			<td>
! 				<!-- TMPL_VAR name="itemcallnumber" -->
  			</td>
  			<td>
! 				<!-- TMPL_VAR name="title" -->
  			</td>
  			<td>
! 				<!-- TMPL_VAR name="author" -->
  			</td>
  		</tr>
+ 	<!-- /TMPL_LOOP -->
  	</table>
! 	<input type="submit" value="Mark seen" class="button reports">
! 	</form>
! 	<!-- /TMPL_IF -->
! 	<!-- TMPL_IF name="offset" -->
! 	<form method="post">
! 		<input type="hidden" name="minlocation" value="<!-- TMPL_VAR name="minlocation" -->">
! 		<input type="hidden" name="maxlocation" value="<!-- TMPL_VAR name="maxlocation" -->">
! 		<input type="hidden" name="datelastseen" value="<!-- TMPL_VAR name="datelastseen" -->">
! 		<input type="hidden" name="pagesize" value="<!-- TMPL_VAR name="pagesize" -->">
! 		<input type="hidden" name="offset" value="<!-- TMPL_VAR name="prevoffset" -->">
! 		<input type="submit" value="&lt;&lt;&lt;" class="button reports">
! 	</form>
! 	<!-- /TMPL_IF -->
! 	<!-- TMPL_IF name="nextoffset" -->
! 	<form method="post">
! 		<input type="hidden" name="minlocation" value="<!-- TMPL_VAR name="minlocation" -->">
! 		<input type="hidden" name="maxlocation" value="<!-- TMPL_VAR name="maxlocation" -->">
! 		<input type="hidden" name="datelastseen" value="<!-- TMPL_VAR name="datelastseen" -->">
! 		<input type="hidden" name="pagesize" value="<!-- TMPL_VAR name="pagesize" -->">
! 		<input type="hidden" name="offset" value="<!-- TMPL_VAR name="nextoffset" -->">
! 		<input type="submit" value="&gt;&gt;&gt;" class="button reports">
! 	</form>
! 	<!-- /TMPL_IF -->
! </div>
  <!-- TMPL_INCLUDE NAME="reports-bottom.inc" -->





More information about the Koha-cvs mailing list