{% extends "base.html" %} {% load static %} {% block scripts %} {{ block.super }} {% endblock %} {% block body %} {% include "navbar.html" %}

게시판 상세보기 (API)

{% if not rsDetail %}

내용이 없습니다!

{% else %}
제목 {{ rsDetail.bTitle }}
작성자 {{ rsDetail.bWriter }}
내용
{{ rsDetail.bNote }}
시간 {{ rsDetail.bDate }}
수정
{% endif %}
{% include "footer.html" %} {% endblock %}