{% extends "base.html" %} {% block content %}
{{ total }}
{% if q %}
검색어: {{ q }}
{% endif %}
전체 보기
전체 {% for c in categories %} {{ c.name }} {% endfor %}
{% if prompts|length == 0 %}
아직 프롬프트가 없습니다. 첫 프롬프트를 등록해보세요.
{% endif %} {% for p in prompts %}
{{ p.title }}
{% for c in categories %} {% if c.id == p.category_id %}{{ c.name }}{% endif %} {% endfor %} 작성자: {{ p.author_nickname }} 복사 {{ p.copy_count }}
{% if p.description %}
{{ p.description }}
{% endif %}
{% set liked = (p.id in liked_ids) %} {% set cnt = like_counts.get(p.id, 0) %}
{% endfor %}
{% set has_prev = page > 1 %} {% set has_next = (page * page_size) < total %} {% if has_prev or has_next %}
{% if has_prev %} {% if q %} ← 이전 {% else %} ← 이전 {% endif %} {% endif %}
페이지 {{ page }}
{% if has_next %} {% if q %} 다음 → {% else %} 다음 → {% endif %} {% endif %}
{% endif %} {% endblock %}