{% extends "base.html" %} {% if board.bo_use_sideview %} {% import "/sideview/macros.html" as sideview %} {% endif %} {% block head %} {% endblock head %} {% block title %}{{ write.wr_subject|truncate(20, False, '...', 0) }} > {{ board.subject }}{% endblock title %} {% block subtitle %}{{ board.subject }}{% endblock subtitle %} {% block content %} {% set board_config=board_config(request, board) %} {% 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 board.bo_use_category and write.ca_name %} {{ write.ca_name }} {% endif %} {{ write.wr_subject|truncate(250, False, '...', 0) }}

페이지 정보

작성자 {% if board.bo_use_sideview %} {{ sideview.get(request, write.mb_id, write.name, write.wr_email, write.wr_homepage)|safe }} {% else %} {{ write.name }} {% endif %} {% if write.ip %} ({{ write.ip }}) {% endif %}
댓글 {{ write.wr_comment|number_format }}건 조회 {{ write.wr_hit|number_format }}회 작성일 {{ write.wr_datetime|datetime_format }}

본문

{% if login_member %} 스크랩 {% endif %}
{% for image in images %} {% endfor %}
{{ write.wr_content|set_image_width(board_config.image_width)|url_auto_link(request)|safe }}
{{ board_config.get_member_signature(write.mb_id) }} {% if board.bo_use_good or board.bo_use_nogood %}
{% if board.bo_use_good %}
추천 {{ write.wr_good }}
{% endif %} {% if board.bo_use_nogood %}
비추천 {{ write.wr_nogood }}
{% endif %}
{% endif %}
{% if files %} {% endif %} {% if links %} {% endif %} {% if prev or next %}
{% if prev %} {% else %} {% endif %} {% if next %} {% else %} {% endif %}
{% endif %}

댓글목록

{% for comment in comments %} {% set reply_depth=comment.wr_comment_reply|length %}

{{ comment.name }}님의 댓글

{% if reply_depth %} 대댓글 {% endif %}
{% if board.bo_use_sideview %} {{ sideview.get(request, comment.mb_id, comment.name, comment.wr_email, comment.wr_homepage)|safe }} {% else %} {{ comment.name }} {% endif %} {% if comment.ip %} 아이피 ({{ comment.ip }}) {% endif %} 작성일
{% if comment.is_secret %} 비밀댓글입니다. {% endif %} {% if comment.is_secret_content %} 댓글내용 확인 {% else %} {{ comment.wr_content|safe }} {% endif %}
    {% if comment.is_reply %}
  • {% endif %} {% if comment.is_edit %}
  • {% endif %} {% if comment.is_del %}
  • {% endif %}
{% else %}

등록된 댓글이 없습니다.

{% endfor %}
{% if is_comment_write %}

댓글쓰기

{% if not request.state.login_member %} {% endif %}
내용 {% if board.bo_comment_min and board.bo_comment_max %} 0글자 {% endif %} {% if not request.state.login_member %}
{% include captcha_widget(request) ignore missing %}
{% endif %}
{% endif %}
{% if write_list %} {{ write_list|safe }} {% endif %} {% endblock content %}