mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-12-02 19:17:21 +01:00
7257642906
Also improved some CSS and HTML aspects of the thread layout. Signed-off-by: 8n-tech <8n-tech@users.noreply.github.com>
17 lines
993 B
HTML
17 lines
993 B
HTML
<div id="post-moderation-fields">
|
|
{% if config.allow_delete %}
|
|
<div id="delete-fields">
|
|
{% trans %}Delete Post{% endtrans %} [<input title="Delete file only" type="checkbox" name="file" id="delete_file" />
|
|
<label for="delete_file">{% trans %}File{% endtrans %}</label>] <label for="password">{% trans %}Password{% endtrans %}</label>
|
|
<input id="password" type="password" name="password" size="12" maxlength="18" />
|
|
<input type="submit" name="delete" value="{% trans %}Delete{% endtrans %}" />
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div id="report-fields">
|
|
<label for="reason">{% trans %}Reason{% endtrans %}</label>
|
|
<input id="reason" type="text" name="reason" size="20" maxlength="30" />
|
|
[<input title="Global Report" type="checkbox" name="global" id="global_report" /><label for="global_report" title="Report rule violation (CP, etc) to global staff">{% trans %}Global{% endtrans %}</label>]
|
|
<input type="submit" name="report" value="{% trans %}Report{% endtrans %}" />
|
|
</div>
|
|
</div> |