The version of vichan running on lainchan.org
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

41 行
1.2KB

  1. {% if post and board %}
  2. {% set action = '?/' ~ board ~ '/warning/' ~ post %}
  3. {% else %}
  4. {% set action = '?/warning' %}
  5. {% endif %}
  6. <form action="{{ action }}" method="post">
  7. <input type="hidden" name="token" value="{{ token }}">
  8. {% if redirect %}
  9. <input type="hidden" name="redirect" value="{{ redirect|e }}">
  10. {% endif %}
  11. {% if thread %}
  12. <input type="hidden" name="thread" value="{{ thread }}">
  13. {% endif %}
  14. <table>
  15. <tr>
  16. <th>
  17. <label for="reason">{% trans 'Message' %}</label>
  18. </th>
  19. <td>
  20. <input type="checkbox" id="public_message" name="public_message" checked>
  21. <input type="text" name="message" id="message" size="35" maxlength="400" value="{{ config.mod.default_warning_message|e }}">
  22. <span class="unimportant">({% trans 'public; attached to post' %})</span>
  23. <script type="text/javascript">
  24. document.getElementById('message').disabled = !document.getElementById('public_message').checked;
  25. document.getElementById('public_message').onchange = function() {
  26. document.getElementById('message').disabled = !this.checked;
  27. }
  28. </script>
  29. </td>
  30. </tr>
  31. <tr>
  32. <td></td>
  33. <td><input name="new_warning" type="submit" value="{% trans 'New Warning' %}"></td>
  34. </tr>
  35. </table>
  36. </form>