summary refs log tree commit diff stats
path: root/theme/admin/editDraft.tpl
blob: 1431e79a0e0efeba0408cc589f76ed46854c9933 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<h2>Edit a draft</h2>

<p><form action="/admin/editDraft.php?id=<!--ID-->&amp;submit=" method="post">
	Draft Title: <input type="text" name="title" value="<!--TITLE-->" /><br />
	<textarea name="text" cols="80" rows="20"><!--TEXT--></textarea><br />
	Tags (comma-seperated): <input type="text" name="tags" value="<!--TAGS-->" /><br />
	Post Type: <select name="type" size="4">
		<option value="draft" selected="selected">Draft</option>
		<option value="normal">Normal (Article-style) Post</option>
		<option value="priority">High-Priority Post</option>
		<option value="instant">Instant Post</option>
	</select><br />
	<input type="submit" value="Edit draft" />
</form></p>