20 lines
565 B
HTML
20 lines
565 B
HTML
{% extends "components/base.html" %}
|
|
|
|
{% block title %}Notice Detail{% endblock %}
|
|
|
|
{% block main_area %}
|
|
<h2 class="fw-bold pt-3 pb-2">{{ notice.title }}</h2>
|
|
<hr>
|
|
<div>
|
|
{{ notice.contents|linebreaks }}
|
|
</div>
|
|
<hr>
|
|
<p class="text-muted">작성자:
|
|
{{ notice.author }}</p>
|
|
<p class="text-muted">작성일:
|
|
{{ notice.created_at|date:"Y-m-d H:i" }}</p>
|
|
<p class="text-muted">수정일:
|
|
{{ notice.updated_at|date:"Y-m-d H:i" }}</p>
|
|
<a href="{% url 'butler:notice' %}" class="btn btn-secondary mt-3">Back to Notices</a>
|
|
{% endblock %}
|