2019-10-22 15:21:48 +08:00

71 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>金蚕游戏日报By ops</title>
</head>
<body>
<h1>学生表</h1>
<h2>游戏ID{{data.get(gameid)}}</h2>>
<h2>渠道ID{{data.get('channelid')}}</h2>>
<h2>日期:{{data.get(day)}}</h2>
<h1>总表</h1>>
<!-- activa, new, share, timeonlie, ad_101, ad_1, ad_201-->
<body>
<br>
<td>活跃</td>
<td>新增</td>
<td>分享</td>
<td>时长</td>
<td>视屏显示</td>
<td>banner显示</td>
<td>插屏显示</td>
<br>
</tr>
</body>
{% for item in data.get('all') %}
<th>{{ item }}</th>
{% endfor %}
<h1>导入数据:</h1>>
<tr>
<!--('wxdb103a128e118619', '拯救熊猫泡泡', 2, 1, 0, 0.0)-->
<td>渠道ID</td>
<td>游戏名称</td>
<td>活跃</td>
<td>新增</td>
<td>分享</td>
<td>K值</td>
</tr>
{% for line in data.get('input') %}
<br>
<tr>
{%for item in line%}
<th>{{ item }}</th>
{% endfor %}
</tr>
{% endfor %}
<h1>导出数据:</h1>>
<tr>
<td>渠道ID</td>
<td>跳转目标</td>
<td>跳转次数</td>
<td>跳转人数</td>
</tr>
{% for line in data.get('output') %}
<br>
<tr>
{% for item in line %}
<th>{{ item }}</th>
{% endfor %}
</tr>
{% endfor %}
</body>
</html>