2011-11-23 05:18:06 -05:00
< form name = "post" onsubmit = "return dopost(this);" enctype = "multipart/form-data" action = "{{ config.post_url }}" method = "post" >
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2012-04-12 03:20:49 -04:00
{% if id %}< input type = "hidden" name = "thread" value = "{{ id }}" > {% endif %}
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2012-04-12 03:20:49 -04:00
< input type = "hidden" name = "board" value = "{{ board.uri }}" >
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2013-08-03 17:42:34 -04:00
{% if current_page %}
< input type = "hidden" name = "page" value = "{{ current_page }}" >
{% endif %}
2012-04-12 03:20:49 -04:00
{% if mod %}< input type = "hidden" name = "mod" value = "1" > {% endif %}
2011-11-23 05:18:06 -05:00
< table >
2014-11-12 19:19:44 -05:00
{% if id %}< tr >
< td colspan = "2" > < div class = "banner" > {% trans %}Posting mode: Reply{% endtrans %} < a class = "unimportant" href = "{{ return }}" > [{% trans %}Return{% endtrans %}]< / a > < / div > < / td >
< / tr > {% endif %}
2012-02-17 00:20:58 -05:00
{% if not config.field_disable_name or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri)) %}< tr >
2011-11-23 05:18:06 -05:00
< th >
{% trans %}Name{% endtrans %}
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / th >
< td >
2014-09-20 11:21:50 -04:00
< input type = "text" name = "name" size = "25" maxlength = "35" autocomplete = "off" > {% if config.allow_no_country and config.country_flags %}< input id = "no_country" name = "no_country" type = "checkbox" > < label for = "no_country" > {% trans %}Don't show my flag{% endtrans %}< / label > {% endif %}
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / td >
2011-11-23 05:24:06 -05:00
< / tr > {% endif %}
2012-02-17 00:20:58 -05:00
{% if not config.field_disable_email or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri)) %}< tr >
2011-11-23 05:18:06 -05:00
< th >
{% trans %}Email{% endtrans %}
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / th >
< td >
2013-08-08 15:30:05 -04:00
{% if config.field_email_selectbox %}
< select name = "email" id = "email_selectbox" autocomplete = "off" >
< option value = "" > < / option >
< option value = "sage" > sage< / option >
2014-07-31 07:49:41 -04:00
{% if not config.always_noko %}< option value = "noko" > noko< / option > {% endif %}
2013-08-08 15:30:05 -04:00
< / select >
{% else %}
2012-04-12 03:20:49 -04:00
< input type = "text" name = "email" size = "25" maxlength = "40" autocomplete = "off" >
2013-07-02 18:05:18 -04:00
{% endif %}
2013-08-08 15:30:05 -04:00
{{ antibot.html() }}
2013-08-09 17:36:07 -04:00
{% if not (not (config.field_disable_subject or (id and config.field_disable_reply_subject)) or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri))) %}
2014-10-11 21:37:21 -04:00
< input accesskey = "s" style = "margin-left:2px;" type = "submit" name = "post" value = "{% if id %}{{ config.button_reply }}{% else %}{{ config.button_newtopic }}{% endif %}" / > {% if config.spoiler_images %}< div id = "spoilercontainer" > < input id = "spoiler" name = "spoiler" type = "checkbox" > < label for = "spoiler" > {% trans %}Spoiler Image{% endtrans %}< / label > < / div > {% endif %}
2013-08-09 17:36:07 -04:00
{% endif %}
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / td >
2011-11-23 05:24:06 -05:00
< / tr > {% endif %}
2013-07-02 18:05:18 -04:00
{% if not (config.field_disable_subject or (id and config.field_disable_reply_subject)) or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri)) %}< tr >
< th >
2011-11-23 05:18:06 -05:00
{% trans %}Subject{% endtrans %}
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / th >
< td >
2012-04-12 03:20:49 -04:00
< input style = "float:left;" type = "text" name = "subject" size = "25" maxlength = "100" autocomplete = "off" >
2014-10-11 21:37:21 -04:00
< input accesskey = "s" style = "margin-left:2px;" type = "submit" name = "post" value = "{% if id %}{{ config.button_reply }}{% else %}{{ config.button_newtopic }}{% endif %}" / >
2016-08-23 15:17:23 -04:00
< input id = "spoiler" name = "spoiler" type = "checkbox" > < label for = "spoiler" > Spoiler Image< / label >
2011-11-23 05:18:06 -05:00
< / td >
< / tr >
2013-07-02 18:05:18 -04:00
{% endif %}
2014-11-12 19:19:44 -05:00
{% if not config.field_disable_comment or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri)) %}< tr >
2011-11-23 05:18:06 -05:00
< th >
{% trans %}Comment{% endtrans %}
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / th >
< td >
< textarea name = "body" id = "body" rows = "5" cols = "35" > < / textarea >
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2013-07-02 18:05:18 -04:00
{% if not (not (config.field_disable_subject or (id and config.field_disable_reply_subject)) or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri))) %}
{% if not (not config.field_disable_email or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri))) %}
2014-10-11 21:37:21 -04:00
< input accesskey = "s" style = "margin-left:2px;" type = "submit" name = "post" value = "{% if id %}{{ config.button_reply }}{% else %}{{ config.button_newtopic }}{% endif %}" / >
2016-08-23 15:41:30 -04:00
< input id = "spoiler" name = "spoiler" type = "checkbox" > < label for = "spoiler" > Spoiler Image< / label >
2013-07-02 18:05:18 -04:00
{% endif %}
{% endif %}
2011-11-23 05:18:06 -05:00
< / td >
2014-11-12 19:19:44 -05:00
< / tr > {% endif %}
2011-11-23 05:18:06 -05:00
{% if config.recaptcha %}
< tr >
< th >
{% trans %}Verification{% endtrans %}
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / th >
< td >
2013-07-16 13:18:55 -04:00
< script type = "text/javascript" src = "//www.google.com/recaptcha/api/challenge?k={{ config.recaptcha_public }}" > < / script >
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / td >
< / tr >
{% endif %}
2014-04-19 08:56:59 -04:00
{% if config.user_flag %}
< tr >
< th > {% trans %}Flag{% endtrans %}< / th >
< td >
< select name = "user_flag" id = "user_flag" >
< option value = "" > {% trans %}None{% endtrans %}< / option >
{% for flag, text in config.user_flags %}
< option value = "{{ flag }}" > {{ text }}< / option >
{% endfor %}
< / select >
< / td >
< / tr >
{% endif %}
2015-04-21 23:54:48 -04:00
{% if config.allowed_tags and not id %}
< tr >
< th > {% trans %}Tag{% endtrans %}< / th >
< td >
< select name = "tag" >
{% for id, tag in config.allowed_tags %}
2015-04-22 21:45:08 -04:00
< option value = "{{ id|e }}" > {{ tag|e }}< / option >
2015-04-21 23:54:48 -04:00
{% endfor %}
< / select >
< / td >
< / tr >
{% endif %}
2013-08-17 16:37:15 -04:00
< tr id = "upload" >
2011-11-23 05:18:06 -05:00
< th >
{% trans %}File{% endtrans %}
< / th >
< td >
2013-08-17 16:37:15 -04:00
< input type = "file" name = "file" id = "upload_file" >
2015-03-18 06:44:47 -04:00
2015-03-19 23:22:17 -04:00
< script type = "text/javascript" > if ( typeof init _file _selector !== 'undefined' ) init _file _selector ( { { config . max _images } } ) ; < / script >
2015-03-18 09:35:58 -04:00
2013-08-12 08:51:46 -04:00
{% if config.allow_upload_by_url %}
2013-08-17 16:37:15 -04:00
< div style = "float:none;text-align:left" id = "upload_url" >
2013-08-12 08:51:46 -04:00
< label for = "file_url" > {% trans %}Or URL{% endtrans %}< / label > :
< input style = "display:inline" type = "text" id = "file_url" name = "file_url" size = "35" >
< / div >
{% endif %}
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / td >
< / tr >
{% if config.enable_embedding %}
2013-08-17 16:37:15 -04:00
< tr id = "upload_embed" >
2011-11-23 05:18:06 -05:00
< th >
{% trans %}Embed{% endtrans %}
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / th >
< td >
2014-04-10 05:01:37 -04:00
< input type = "text" name = "embed" value = "" size = "30" maxlength = "120" autocomplete = "off" >
2011-11-23 05:18:06 -05:00
< / td >
< / tr >
{% endif %}
2013-07-30 23:36:46 -04:00
{% if mod and ((not id and post.mod|hasPermission(config.mod.sticky, board.uri)) or (not id and post.mod|hasPermission(config.mod.lock, board.uri)) or post.mod|hasPermission(config.mod.rawhtml, board.uri)) %}
2011-11-23 05:18:06 -05:00
< tr >
< th >
{% trans %}Flags{% endtrans %}
< / th >
< td >
2014-02-01 15:53:46 -05:00
{% if not id and post.mod|hasPermission(config.mod.sticky, board.uri) %}< div class = "center" >
2011-11-23 05:18:06 -05:00
< label for = "sticky" > {% trans %}Sticky{% endtrans %}< / label >
2012-04-12 03:20:49 -04:00
< input title = "{% trans %}Sticky{% endtrans %}" type = "checkbox" name = "sticky" id = "sticky" > < br >
2011-11-23 05:18:06 -05:00
< / div > {% endif %}
2014-02-01 15:53:46 -05:00
{% if not id and post.mod|hasPermission(config.mod.lock, board.uri) %}< div class = "center" >
2012-04-12 03:20:49 -04:00
< label for = "lock" > {% trans %}Lock{% endtrans %}< / label > < br >
< input title = "{% trans %}Lock{% endtrans %}" type = "checkbox" name = "lock" id = "lock" >
2011-11-23 05:18:06 -05:00
< / div > {% endif %}
2014-02-01 15:53:46 -05:00
{% if post.mod|hasPermission(config.mod.rawhtml, board.uri) %}< div class = "center" >
2012-04-12 03:20:49 -04:00
< label for = "raw" > {% trans %}Raw HTML{% endtrans %}< / label > < br >
< input title = "{% trans %}Raw HTML{% endtrans %}" type = "checkbox" name = "raw" id = "raw" >
2011-11-23 05:18:06 -05:00
< / div > {% endif %}
< / td >
< / tr >
{% endif %}
2012-02-17 00:20:58 -05:00
{% if not config.field_disable_password or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri)) %}< tr >
2011-11-23 05:18:06 -05:00
< th >
{% trans %}Password{% endtrans %}
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / th >
< td >
2015-03-31 01:01:51 -04:00
< input type = "text" name = "password" value = "" size = "12" maxlength = "18" autocomplete = "off" >
2011-11-23 05:18:06 -05:00
< span class = "unimportant" > {% trans %}(For file deletion.){% endtrans %}< / span >
2012-04-12 07:56:01 -04:00
{{ antibot.html() }}
2011-11-23 05:18:06 -05:00
< / td >
2011-11-23 05:24:06 -05:00
< / tr > {% endif %}
2011-11-23 05:18:06 -05:00
< / table >
2012-04-12 07:56:01 -04:00
{{ antibot.html(true) }}
< input type = "hidden" name = "hash" value = "{{ antibot.hash() }}" >
2011-11-23 05:18:06 -05:00
< / form >
< script type = "text/javascript" > { % r a w % }
rememberStuff();
{% endraw %}< / script >