{% extends 'base.html' %} {% block title %}作品审核{% endblock %} {% block content %}

作品审核

{% for p in posts %}
{% set first = p.images[0] if p.images %} {% if first %} {{ p.title }} {% endif %}
{{ p.title }} · {{ p.user.username }}
{% if p.description %}
{{ p.description }}
{% endif %}
{% endfor %}
{% endblock %}