nekrochan/templates/macros/post-form.html

101 řádky
4.3 KiB
HTML

{% macro post_form(board, reply, reply_to) %}
<form method="post" enctype="multipart/form-data" action="/actions/create-post">
<input name="board" type="hidden" value="{{ board.id }}">
{% if reply %}
<input name="thread" type="hidden" value="{{ reply_to }}">
{% endif %}
<table class="form-table">
{% if reply %}
<tr>
<td colspan="2"><div class="reply-mode">Režim: Odpověď <a href="/boards/{{ board.id }}">[Zpět]</a></div></td>
</tr>
{% endif %}
<tr>
<td class="label">Jméno</td>
<td>
<input name="name" type="text" placeholder="{{ board.config.0.anon_name }}"{% if let Some(name) = tcx.name %}value="{{ name }}"{% endif %}>
</td>
</tr>
<tr>
<td class="label">Email</td>
<td>
<input name="email" type="text" autocomplete="off">
</td>
</tr>
<tr>
<td class="label">Obsah</td>
<td>
<textarea name="content" {% if (!reply && board.config.0.require_thread_content) || (reply && board.config.0.require_reply_content) %}required=""{% endif %}></textarea>
</td>
</tr>
<tr>
<td class="label">
{% if board.config.0.file_limit > 1 %}
Soubory <span class="small">(max {{ board.config.0.file_limit }})</span>
{% else %}
Soubor
{% endif %}
</td>
<td>
<div class="input-wrapper">
<input name="files[]" type="file"{% if board.config.0.file_limit > 1 %} multiple="multiple"{% endif %}{% if (!reply && board.config.0.require_thread_file) || (reply && board.config.0.require_reply_file) %} required=""{% endif %}>
</div>
</td>
</tr>
<tr>
<td class="label">Spoiler?</td>
<td>
<div class="input-wrapper">
<input name="spoiler_files" type="checkbox">
</div>
</td>
</tr>
<tr>
<td class="label">Heslo <span class="small">(na odstranění)</span></td>
<td><input name="password" type="password" required=""></td>
</tr>
{% if !(tcx.perms.bypass_captcha() || tcx.perms.owner()) %}
{% let difficulty %}
{% if reply %}
{% let difficulty = board.config.0.reply_captcha.as_str() %}
{% else %}
{% let difficulty = board.config.0.thread_captcha.as_str() %}
{% endif %}
{% if (!reply && board.config.0.thread_captcha != "off") || (reply && board.config.0.reply_captcha != "off") %}
<noscript>
<tr>
<td colspan="2">
<div class="reply-mode">CAPTCHA vyžaduje JavaScript</div>
</td>
</tr>
</noscript>
<tr>
<td class="label">
CAPTCHA<br>
<span class="small">(vyprší za 10 min.)</span>
</td>
<td>
<div class="input-wrapper">
<table class="full-width">
<tr><td><button id="get-captcha" type="button" class="button" data-board="{{ board.id }}" data-reply="{{ reply }}">Získat CAPTCHA</button></td></tr>
<tr><td><div id="captcha"></div></tr>
<input id="captcha-id" name="captcha_id" type="hidden" required="">
<tr><td><input name="captcha_solution" type="text" placeholder="Řešení" required=""></tr></td>
</table>
</div>
</td>
</tr>
{% endif %}
{% endif %}
<tr>
{% if reply %}
<td colspan="2"><input class="button" type="submit" value="Nová odpověď"></td>
{% else %}
<td colspan="2"><input class="button" type="submit" value="Nové vlákno"></td>
{% endif %}
</tr>
</table>
</form>
{% endmacro %}