{% extends "base.html" %} {% import editor_macro(request) as editor %} {% block head %} {{ editor.head() }} {% endblock head %} {% block title %}FAQ 관리{% endblock title %} {% block subtitle %}FAQ {{ action }} 관리{% endblock subtitle %} {% block content %} {% set action='입력' if not faq_master else '수정' %} {% set form_action=url_for("faq_master_add") if not faq_master else url_for("faq_master_update", fm_id=faq_master.fm_id) %}
FAQ {{ action }} 관리
숫자가 작을수록 FAQ 분류에서 먼저 출력됩니다.
{% if head_image and head_image.exists %}
{% endif %}
{% if tail_image and tail_image.exists %}
{% endif %}
상단 내용 {{ editor.body("fm_head_html", faq_master.fm_head_html) }}
하단 내용 {{ editor.body("fm_tail_html", faq_master.fm_tail_html) }}
모바일상단 내용 {{ editor.body("fm_mobile_head_html", faq_master.fm_mobile_head_html) }}
모바일하단 내용 {{ editor.body("fm_mobile_tail_html", faq_master.fm_mobile_tail_html) }}
{% endblock content %}