41 lines
762 B
XML
41 lines
762 B
XML
|
<?xml version='1.0' ?>
|
||
|
|
||
|
<t:chloe xmlns:t="http://factorcode.org/chloe/1.0">
|
||
|
|
||
|
<t:title>Edit Blog</t:title>
|
||
|
|
||
|
<t:form action="edit-blog">
|
||
|
|
||
|
<t:edit component="id" />
|
||
|
|
||
|
<table>
|
||
|
|
||
|
<tr>
|
||
|
<th class="field-label">Blog name:</th>
|
||
|
<td><t:edit component="name" /></td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<th class="field-label">Home page:</th>
|
||
|
<td><t:edit component="www-url" /></td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<th class="field-label">Atom feed:</th>
|
||
|
<td><t:edit component="atom-url" /></td>
|
||
|
</tr>
|
||
|
|
||
|
</table>
|
||
|
|
||
|
<input type="SUBMIT" value="Done" />
|
||
|
|
||
|
</t:form>
|
||
|
|
||
|
<t:a href="view" query="id">View</t:a>
|
||
|
|
|
||
|
<t:form action="delete-blog" class="inline">
|
||
|
<t:edit component="id" />
|
||
|
<button type="submit" class="link-button link">Delete</button>
|
||
|
</t:form>
|
||
|
</t:chloe>
|