{% extends 'admin/base_admin.html' %} {% block content %}
초기화
{% if posts %} {% for post in posts %} {% endfor %} {% else %} {% endif %}
ID 제목 카테고리 작성자 공개 상태 작성일 관리
{{ post.id }} {{ post.title[:50] }}{% if post.title|length > 50 %}...{% endif %} {{ post.category }} {{ post.mb_name }} {% if post.public_yn == 'Y' %} 공개 {% else %} 비공개 {% endif %} {% if post.use_yn == 'Y' %} 사용중 {% else %} 삭제됨 {% endif %} {{ post.add_date.strftime('%Y-%m-%d') }} {% if post.use_yn == 'Y' %} {% else %} {% endif %}
포스트가 없습니다.
{% if pagination.total > 0 %}
총 {{ pagination.total }}개 중 {{ ((pagination.page - 1) * pagination.per_page) + 1 }} - {{ [pagination.page * pagination.per_page, pagination.total]|min }}개 표시
{% endif %} {% endblock %} {% block scripts %} {% endblock %}