36 lines
980 B
HTML
36 lines
980 B
HTML
{% extends "components/base.html" %}
|
|
|
|
{% block title %}Notice{% endblock %}
|
|
|
|
{% block main_area %}
|
|
<h2 class="fw-bold pt-3 pb-2">공지사항</h2>
|
|
<!-- 공지사항 목록 -->
|
|
|
|
{% if records %}
|
|
<table class="table table-bordered table-hover">
|
|
<thead class="table-dark">
|
|
<tr>
|
|
<th scope="col">글번호</th>
|
|
<th scope="col">제목</th>
|
|
<th scope="col">작성자</th>
|
|
<th scope="col">작성일</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for record in records %}
|
|
<tr>
|
|
<td>{{ record.pk }}</td>
|
|
<td>
|
|
<a href="{{ record.get_absolute_url }}">{{ record.title }}</a>
|
|
</td>
|
|
<td>{{ record.author }}</td>
|
|
<td>{{ record.created_at|date:"Y-m-d H:i" }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<p class="text-muted">현재 공지사항이 없습니다.</p>
|
|
{% endif %}
|
|
{% endblock %}
|