{% extends "components/base.html" %} {% block title %}Notice{% endblock %} {% block main_area %}

공지사항

{% if notices %} {% for record in notices %} {% endfor %}
글번호 제목 내용 작성자 작성일
{{ record.pk }} {{ record.title }} {{ record.contents|truncatechars:50 }} {{ record.author }} {{ record.created_at|date:"Y-m-d H:i" }}
{% else %}

현재 공지사항이 없습니다.

{% endif %} {% if request.user.is_authenticated %}
Create Notice
{% endif %} {% endblock %}