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

게시판 상세보기

{% if not rsDetail %}

내용이 없습니다!

{% endif %} {% for i in rsDetail %}
제목 {{ i.b_title }}
작성자 {{ i.b_writer }}
내용 {{ i.b_note }}
수정
{% endfor %}
{% include "footer.html" %} {% endblock %}