[Zope-CVS] CVS: Packages/JobBoardEx/Views/Browser - summary.pt:1.2

Jeremy Hylton jeremy@zope.com
Wed, 20 Mar 2002 14:37:28 -0500


Update of /cvs-repository/Packages/JobBoardEx/Views/Browser
In directory cvs.zope.org:/tmp/cvs-serv23062/Views/Browser

Modified Files:
	summary.pt 
Log Message:
Make HTML a bit more formal, which allows Base HREF tag to be
inserted.

And make the job/id link into ../jobid to cope with the base href.




=== Packages/JobBoardEx/Views/Browser/summary.pt 1.1 => 1.2 ===
+<HEAD>
 <TITLE>Job Board</TITLE>
+</HEAD>
+<BODY>
 <h1>Job Board</h1>
 
 <A href="NewJob.html">Submit a new job</A>
@@ -10,10 +13,11 @@
 
 <tr tal:repeat="job container/getApprovedJobs">
 <td>
-<a href="jobid" tal:attributes="href string:${job/id}">
+<a href="jobid" tal:attributes="href string:../${job/id}">
 <span tal:replace="job/summary">A job summary</span></A>
 </td>
 </tr>
 
 </table>
+</BODY>
 </HTML>