{% extends "base.html" %} {% import editor_macro(request) as editor %} {% if request.query_params.get("parent_id") %} {% set action="답변" %} {% else %} {% set action="수정" if write.wr_id else "쓰기" %} {% endif %} {% block head %} {{ editor.head() }} {% endblock head %} {% block title %}{{ board.subject }} 글{{ action }}{% endblock title %} {% block subtitle %}{{ board.subject }} 글{{ action }}{% endblock subtitle %} {% block content %} {% set login_member=request.state.login_member %} {% set is_admin=get_admin_type(request, login_member.mb_id, board=board) %} {% set bo_table_width=board.bo_table_width if board.bo_table_width > 0 else 100 %}
{% if is_html and board.bo_use_dhtml_editor %} {% endif %} {% if not is_admin and is_secret == 2 %} {% endif %} {% if categories %}
{% endif %} {% if not login_member or (is_admin and write and write.mb_id != login_member.mb_id) %}
{% endif %} {% if is_notice or (is_html and not board.bo_use_dhtml_editor) or (is_admin and is_secret) or is_secret == 1 or is_mail %}
옵션
    {% if is_notice %}
  • {% endif %} {% if is_html and not board.bo_use_dhtml_editor %}
  • {% endif %} {% if (is_admin and is_secret) or is_secret == 1 %}
  • {% endif %} {% if is_mail %}
  • {% endif %}
{% endif %}
{% if login_member %}
임시 저장된 글 목록
     
{% endif %}
{% if write_min and write_max %}

이 게시판은 최소 {{ write_min }}글자 이상, 최대 {{ write_max }}글자 이하까지 글을 쓰실 수 있습니다.

{% endif %} {% if write_min and write_max %}
글자
{% endif %}
{{ editor.body("wr_content", write.wr_content) }} {% if is_link %} {% for i in range(1, 3) %} {% endfor %} {% endif %} {% if is_file %} {% for file in files %} {% set i = loop.index %}
{% if is_file_content %} {% endif %} {% if file.bf_no != None %}
{% endif %}
{% endfor %} {% endif %} {% if is_use_captcha %} {% include captcha_widget(request) ignore missing %} {% endif %}
취소
{% endblock content %}