{% extends 'base.html' %} {% block content %}
    {% if prev_post is not none %}
  • 이전

    {{ prev_post.title }}

    {{ prev_post.mb_id }} {{ prev_post.add_date }}

  • {% else %}
  • 이전

    이전 글이 없습니다.

  • {% endif %} {% if next_post is not none %}
  • 다음

    {{ next_post.title }}

    {{ next_post.mb_id }} {{ next_post.add_date }}

  • {% else %}
  • 다음

    다음 글이 없습니다.

  • {% endif %}
{% if g.is_login and (g.user_info.mb_id == post.mb_id or g.user_info.mb_id in ['admin', 'wixon']) %} 수정 삭제 {% endif %} 목록
{% endblock %}