{% extends 'base.html' %} {% load custom_filters %} {% block content %}
最初活动

{{ earliest_act.branch }}{{ earliest_act.name }}

{{ earliest_act.description }}

{{ earliest_act.start_time|format_chinese_full_date }}
最后活动

{{ latest_act.branch }}{{ latest_act.name }}

{{ latest_act.description }}

{{ latest_act.start_time|format_chinese_full_date }}
{% for item in branches %} {% endfor %}
分支机构名称
新建-搬迁-装修
活动的总数量 活动进行中的数量
{{ item.branch.name }} {{ item.total_count }} {{ item.onging_count }}
总计: {{ total_branch_count }} {{ total_activities }} {{ ongoing_activities_count }}

    {% for event in ongoing_events %}
  1. 开始时间 {{ event.start_time| date:"Y年m月d日" }}
    {% if not event.end_time %} {{ event.name }}-未完成 {% else %} {{ event.name }} {% endif %}
    {{ event.description }}
    {% with branch_count=event.branches.count %} {% if branch_count == all_branch_count %} 涉及分支机构:全辖分支机构 {% elif branch_count == 1 %} 涉及分支机构:{{ event.branches.first.name }} {% elif branch_count > 1 %} 涉及分支机构:{{ event.branches.all.0.name }}、{{ event.branches.all.1.name }}等{{ branch_count }}个营业部 {% else %} 涉及分支机构:暂无 {% endif %} {% endwith %}
    结束时间 {{ event.end_time| date:"Y年m月d日" }}
  2. {% endfor %}

    {% for huodong in ongoing_activities %}
  1. 开始时间 {{ huodong.start_time| date:"Y年m月d日" }}
    {% if not huodong.end_time %} {{ huodong.branch }} {{ huodong.name }}-未完成 {% endif %}
    {{ huodong.description }}
  2. {% endfor %}

{% for scope, scope_data in grouped_activities.items %}
    {% for activity in scope_data.activities %}
  1. 开始时间 {{ activity.start_time| date:"Y年m月d日" }}
    {% if not activity.end_time %} {{ activity.branch }} {{ activity.name }}-未完成 {% else %} {{ activity.branch }} {{ activity.name }} {% endif %}
    {{ activity.description }}
    结束时间 {{ activity.end_time| date:"Y年m月d日" }}
  2. {% endfor %}

{% endfor %}
{% for year in historical_years %} {% with year_data=historical_grouped_activities|get_item:year %} {% if year_data %}
{% endif %} {% endwith %} {% endfor %} {% endblock %}