{% extends "base.html" %} {% block extra_styles %} .chart-container { margin: 16px 0; } .chart-bar { display: flex; align-items: center; margin-bottom: 8px; } .chart-label { width: 80px; font-size: 14px; color: #666; } .chart-value { flex: 1; background-color: #e5e7eb; height: 24px; border-radius: 4px; overflow: hidden; position: relative; margin-right: 8px; } .chart-fill { height: 100%; background: linear-gradient(90deg, #667eea 0%, #764ba2 100%); min-width: 2px; } .chart-text { color: #333; font-size: 12px; font-weight: 500; white-space: nowrap; min-width: 40px; text-align: right; } .line-chart-container { margin: 16px 0; padding: 24px 16px 16px 16px; } .line-chart { position: relative; height: 120px; margin: 16px 0; } .chart-line { position: absolute; top: 0; left: 0; right: 0; bottom: 0; } .chart-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .chart-line-path { fill: none; stroke: #667eea; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; } .chart-point { position: absolute; width: 10px; height: 10px; background-color: #667eea; border: 3px solid white; border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 3px 6px rgba(0,0,0,0.15); z-index: 2; } .chart-x-axis { display: grid; grid-template-columns: repeat(7, 1fr); margin-top: 12px; font-size: 12px; color: #666; } .chart-x-axis span { text-align: center; } .price-label { position: absolute; background-color: rgba(102, 126, 234, 0.95); color: white; padding: 3px 6px; border-radius: 4px; font-size: 10px; white-space: nowrap; transform: translate(-50%, -140%); font-weight: 500; z-index: 3; box-shadow: 0 2px 4px rgba(0,0,0,0.2); } {% endblock %} {% block content %}
📈

{{ user_name }}

三角洲周报 - {{ statDate_str }}

资产统计

总带出
{{ Gained_Price_Str }}
总带入
{{ consume_Price_Str }}
资产净增
{{ rise_Price_Str }}
{% if chart_data %}

资产变化趋势

{% if chart_data|length > 1 %} {% endif %}
{% for point in chart_data %}
{{ point.display_price }}
{% endfor %}
{% for point in chart_data %} {{ point.day }} {% endfor %}
{% endif %}

战斗统计

总场次
{{ total_sol_num }}
在线时长
{{ online_time }}
K/D
{{ total_kill }}/{{ total_death }}
撤离数
{{ total_exacuation_num }}

特殊成就

百万撤离 {{ million_gained }}次
{% if armed_forces %}

干员使用

{% for force in armed_forces %}
{{ force.name }}
{{ force.count }}次
{% endfor %}
{% endif %} {% if maps %}

地图游玩

{% for map in maps %}
{{ map.name }}
{{ map.count }}次
{% endfor %}
{% endif %} {% if friend_list %}

队友协作情况

注:KD为好友KD,带出和带入为本人的数据

{% for friend in friend_list %}
{{ friend.charac_name }}
总览: {{ friend.sol_num }}场 | {{ friend.escape_num }}撤离/{{ friend.fail_num }}失败
K/D: {{ friend.kill_num }}杀/{{ friend.death_num }}死
带出: {{ friend.gained_str }}
战损: {{ friend.consume_str }}
利润: {{ friend.profit_str }}
{% endfor %}
{% endif %}
{% endblock %}