leftypol_vichan/templates/mod/edit_post_form.html

41 lines
1008 B
HTML
Raw Normal View History

2013-01-08 03:35:22 +00:00
<form name="post" enctype="multipart/form-data" action="{{ action }}" method="post">
<table>
2013-01-08 06:52:13 +00:00
<tr>
2013-01-08 03:35:22 +00:00
<th>
{% trans %}Name{% endtrans %}
</th>
<td>
2013-01-08 06:52:13 +00:00
<input type="text" name="name" size="25" maxlength="35" autocomplete="off" value="{{ name }}">
2013-01-08 03:35:22 +00:00
</td>
2013-01-08 06:52:13 +00:00
</tr>
<tr>
2013-01-08 03:35:22 +00:00
<th>
{% trans %}Email{% endtrans %}
</th>
<td>
2013-01-08 06:52:13 +00:00
<input type="text" name="email" size="25" maxlength="40" autocomplete="off" value="{{ email }}">
2013-01-08 03:35:22 +00:00
</td>
2013-01-08 06:52:13 +00:00
</tr>
2013-01-08 03:35:22 +00:00
<tr>
<th>
{% trans %}Subject{% endtrans %}
</th>
<td>
2013-01-08 06:52:13 +00:00
<input style="float:left;" type="text" name="subject" size="25" maxlength="100" autocomplete="off" value="{{ subject }}">
2013-01-08 03:35:22 +00:00
</td>
</tr>
<tr>
<th>
{% trans %}Comment{% endtrans %}
</th>
<td>
2013-01-08 06:52:13 +00:00
<textarea name="body" id="body" rows="5" cols="35">{{ body }}</textarea>
2013-01-08 03:35:22 +00:00
</td>
</tr>
<tr>
2013-01-08 06:52:13 +00:00
<th><input type="hidden" name="mode" value="{{ mode }}"></th>
<td><input name="sub" type="submit" value="{% trans 'Submit' %}"></td>
2013-01-08 03:35:22 +00:00
</tr>
</table>
</form>