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

게시판 목록

{% if not rsBoard %}

내용이 없습니다!

{% endif %}
{% for i in rsBoard %}
{{ i.b_no }} {{ i.b_title }} {{ i.b_writer }} {{ i.b_date | date:"y-m-d" }} {{ i.b_count }} 삭제
{% endfor %}
{% include "footer.html" %} {% endblock %}