{% extends 'base.html' %} {% block title %}需求汇总{% endblock %} {% block content %}

需求汇总

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

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

{{ demand.created_at.strftime('%Y-%m-%d %H:%M') }}

{{ demand.content }}

{% if demand.answer %}
查看回答
{% endif %}
{% endfor %}
{% else %}

暂无公开需求

{% endif %} {% endblock %}