File:  [Repository] / ECHO_content / vlp / subCollection_template.zpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Mar 1 11:30:57 2005 UTC (19 years, 3 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
subcollection template changed

<html metal:use-macro="here/main_template/macros/page">
  <head>
	<title tal:content="here/title">VL Literature [lit25146 a0001]</title>
	
    <!-- SLOT: additional stylesheet -->
	<style metal:fill-slot="additionalStyles" type="text/css">
	
		/* background colors d7d7d7*/
		.vario { background-color: #B8C0CB; }
		.stage, .stageSpacer, .stageNav  {background-color:#e6e6e6;}
		
		/* navigation in vario area */
		.liseNav td,.menu p, .liseNav a, select {
			font-family: verdana;
			font-weight: normal;
			font-size: 10px;
		}
		.liseNav {color: #777;}
		.liseNav a {color: #333; text-decoration:underline;}
		.liseNav a:hover {color: white;}
		
		select.pageMenu {width:120px; background-color:#d7d7d7}
		
	</style>
	
    <!-- SLOT: additional scripts-->
    <tal:block metal:fill-slot="script">
		<script language="javascript" type="text/javascript">
		<!--
	    function formgo(box) {
		    if ((-1 < box.selectedIndex) && (box.options[box.selectedIndex].value != "nil")) {
	    		val = box.options[box.selectedIndex].value;
	    		window.open(val, "_top");
	    	}
	    	return true;
	    }
	    // -->
		</script>
	</tal:block>
	

  
   </head>


<body>
<div id="navigation">
  <tal:block metal:fill-slot="body">
  <table tal:repeat="header python:here.ZSQLSimpleSearch('select * from vl_literature where reference like \'%s\' '%here.getId())">
   <tr>
	<th class="thead"><span tal:replace="python:header.shortreference.decode('latin-1')"/> 
	</th>
   </tr>
  </table>

  <p class="TOClist" tal:repeat="item python:here.ZSQLSimpleSearch('select * from vl_literature where volumeid like \'%s\' order by startpages'%here.getId())">

     <a tal:condition="python:item.reference==here.getId()" tal:attributes="href python:'../references?id='+item.reference">FRONT MATTER</a>
     <a tal:condition="not:python:item.reference==here.getId()" tal:attributes="href python:'../references?id='+item.reference">
     <span tal:replace="python:item.fullreference.decode('latin-1')"/></a></p>
</tal:block> 
</body>
</html>												      
										 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>