forked from leftypol/leftypol
[EDIT] basic edit support
This commit is contained in:
parent
64e06dfcf3
commit
c7c5a65a1f
3 changed files with 43 additions and 31 deletions
|
@ -1,27 +1,27 @@
|
|||
<form name="post" enctype="multipart/form-data" action="{{ action }}" method="post">
|
||||
<table>
|
||||
{% if not config.field_disable_name or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri)) %}<tr>
|
||||
<tr>
|
||||
<th>
|
||||
{% trans %}Name{% endtrans %}
|
||||
</th>
|
||||
<td>
|
||||
<input type="text" name="name" size="25" maxlength="35" autocomplete="off">
|
||||
<input type="text" name="name" size="25" maxlength="35" autocomplete="off" value="{{ name }}">
|
||||
</td>
|
||||
</tr>{% endif %}
|
||||
{% if not config.field_disable_email or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri)) %}<tr>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>
|
||||
{% trans %}Email{% endtrans %}
|
||||
</th>
|
||||
<td>
|
||||
<input type="text" name="email" size="25" maxlength="40" autocomplete="off">
|
||||
<input type="text" name="email" size="25" maxlength="40" autocomplete="off" value="{{ email }}">
|
||||
</td>
|
||||
</tr>{% endif %}
|
||||
</tr>
|
||||
<tr>
|
||||
<th>
|
||||
{% trans %}Subject{% endtrans %}
|
||||
</th>
|
||||
<td>
|
||||
<input style="float:left;" type="text" name="subject" size="25" maxlength="100" autocomplete="off">
|
||||
<input style="float:left;" type="text" name="subject" size="25" maxlength="100" autocomplete="off" value="{{ subject }}">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -29,27 +29,12 @@
|
|||
{% trans %}Comment{% endtrans %}
|
||||
</th>
|
||||
<td>
|
||||
<textarea name="body" id="body" rows="5" cols="35"></textarea>
|
||||
<textarea name="body" id="body" rows="5" cols="35">{{ body }}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>
|
||||
{% trans %}Flags{% endtrans %}
|
||||
</th>
|
||||
<td>
|
||||
{% if not id and post.mod|hasPermission(config.mod.sticky, board.uri) %}<div>
|
||||
<label for="sticky">{% trans %}Sticky{% endtrans %}</label>
|
||||
<input title="{% trans %}Sticky{% endtrans %}" type="checkbox" name="sticky" id="sticky"><br>
|
||||
</div>{% endif %}
|
||||
{% if not id and post.mod|hasPermission(config.mod.lock, board.uri) %}<div>
|
||||
<label for="lock">{% trans %}Lock{% endtrans %}</label><br>
|
||||
<input title="{% trans %}Lock{% endtrans %}" type="checkbox" name="lock" id="lock">
|
||||
</div>{% endif %}
|
||||
{% if post.mod|hasPermission(config.mod.rawhtml, board.uri) %}<div>
|
||||
<label for="raw">{% trans %}Raw HTML{% endtrans %}</label><br>
|
||||
<input title="{% trans %}Raw HTML{% endtrans %}" type="checkbox" name="raw" id="raw">
|
||||
</div>{% endif %}
|
||||
</td>
|
||||
<th><input type="hidden" name="mode" value="{{ mode }}"></th>
|
||||
<td><input name="sub" type="submit" value="{% trans 'Submit' %}"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue