{% extends "base.html" %} {% import editor_macro(request) as editor %} {% block head %} {{ editor.head() }} {% endblock head %} {% block title %}{{ qa_config.qa_title }}{% endblock title %} {% block subtitle %}{{ qa_config.qa_title }}{% endblock subtitle %} {% block content %} {% if qa_config.qa_content_head %} {{ qa_config.qa_content_head|safe }} {% endif %}

{{ qa.qa_category }} {{ qa.qa_subject }}

페이지 정보

작성자 {{ qa.qa_name }} 작성일 {{ qa.qa_datetime }} {% if qa.qa_email %} 이메일 {{ qa.qa_email }} {% endif %} {% if qa.qa_hp %} 휴대폰 {{ qa.qa_hp }} {% endif %}

본문

{% for image in qa.image %} {% endfor %}
{{ qa.qa_content|safe }}

첨부파일

{% if answer %}

답변 {{ answer.qa_subject }}

{{ answer.qa_datetime }}
{% if request.state.is_super_admin %}
{% endif %}
{% for image in answer.image %} {% endfor %}
{{ answer.qa_content|safe }}

첨부파일

추가질문
{% elif request.state.is_super_admin %}

답변등록

  • {% if qa_config.qa_use_editor %} {{ editor.body("qa_content", "") }} {% else %} {% endif %}
{% endif %} {% if related_list %}

연관질문

{% for related in related_list %} {% endfor %}
제목 등록일 상태
{{ related.qa_category }} {{ related.qa_subject }} {{ related.qa_datetime }} {% if related.qa_status %} 답변완료 {% else %} 답변대기 {% endif %}
{% endif %}
{% if qa_config.qa_content_tail %} {{ qa_config.qa_content_tail|safe }} {% endif %} {% endblock content %}