File:  [Repository] / MPIWGWeb / zpt / Attic / showNewDBEntries.zpt
Revision 1.1.2.2: download - view: text, annotated - select for diffs - revision graph
Thu Apr 26 18:09:44 2007 UTC (17 years, 2 months ago) by casties
Branches: r2
small fixes for update homepages

<html tal:define="newEntries options/newEntries">
	<body>
		<h2>New entries</h2>
		<form action="createNewStaffObjects">
		<table border="1">	
			<tr>
				<td>First name</td>
				<td>Last name</td>
				<td>e_mail</td>
			<tr tal:repeat="newEntry newEntries">
				<td tal:content="python:here.decode(newEntry.first_name)"/>
				<td tal:content="python:here.decode(newEntry.last_name)"/>
				<td><input tal:attributes="name python:here.urlQuote(newEntry.key)" size="20"></td>
			</tr>
		</table>
		<input type="submit" name="submit">
		</form>
	</body>
</html>

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