{% extends 'base.html' %} {% block title %}管理后台{% endblock %} {% block content %}

管理后台 - 所有需求

{% if demands %}
{% for demand in demands %}

{{ demand.title }} {{ get_branch_name(demand.branch) }}

{% if demand.is_public %}公开{% else %}私有{% endif %}
提交者: {{ demand.user.username }}       提交时间: {{ demand.created_at.strftime('%Y-%m-%d %H:%M') }}

{{ demand.content }}

{% endfor %}
{% if pagination.pages > 1 %} {% endif %} {% else %}

暂无需求

{% endif %} {% endblock %}