factor/extra/webapps/wiki/revisions.xml

39 lines
778 B
XML
Raw Normal View History

2008-05-27 01:02:16 -04:00
<?xml version='1.0' ?>
<t:chloe xmlns:t="http://factorcode.org/chloe/1.0">
<t:title>Revisions of <t:label t:name="title" /></t:title>
<h2>View Differences</h2>
<t:form t:action="$wiki/diff" t:method="get">
2008-05-27 01:02:16 -04:00
<table>
<tr>
<th class="field-label">Old revision:</th>
<td>
<select name="old-id">
<t:bind-each t:name="revisions">
2008-05-27 01:02:16 -04:00
<option> <t:label t:name="id" /> </option>
</t:bind-each>
2008-05-27 01:02:16 -04:00
</select>
</td>
</tr>
<tr>
<th class="field-label">New revision:</th>
<td>
<select name="new-id">
<t:bind-each t:name="revisions">
2008-05-27 01:02:16 -04:00
<option> <t:label t:name="id" /> </option>
</t:bind-each>
2008-05-27 01:02:16 -04:00
</select>
</td>
</tr>
</table>
2008-11-17 08:17:05 -05:00
<button type="submit">View</button>
</t:form>
2008-05-27 01:02:16 -04:00
</t:chloe>