95 lines
1.9 KiB
HTML
95 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>金蚕游戏日报,By ops</title>
|
||
</head>
|
||
<body>
|
||
|
||
{% for line in data %}
|
||
|
||
|
||
<h2>
|
||
<strong>
|
||
<span style="font-size:18px;">游戏内容</span>
|
||
</strong>
|
||
<!-- <span style="font-size:18px;">all:{{data}}</span> -->
|
||
<span style="font-size:18px;">游戏ID:{{line['gameid']}}</span><br>
|
||
<span style="font-size:18px;">渠道ID:{{line['channelid']}}</span><br>
|
||
|
||
</h2>
|
||
<h3>
|
||
<strong>
|
||
<span style="font-size:18px;">总表</span>
|
||
|
||
</strong></h3>
|
||
<!-- activa, new, share, timeonlie, ad_101, ad_1, ad_201-->
|
||
<table border="1">
|
||
<tbody>
|
||
<tr>
|
||
<th>活跃</th>
|
||
<th>新增</th>
|
||
<th>分享</th>
|
||
<th>时长</th>
|
||
<th>视屏显示</th>
|
||
<th>banner显示</th>
|
||
<th>插屏显示</th>
|
||
<th>导出率</th>
|
||
</tr>
|
||
|
||
<tr>
|
||
{% for item in line.get('all') %}
|
||
<td>{{ item }}</td>
|
||
{% endfor %}
|
||
</tr>
|
||
</tbody>
|
||
|
||
</table>
|
||
|
||
|
||
<h1>导入数据:</h1>
|
||
<table border="1">
|
||
<tbody>
|
||
<tr>
|
||
<!--('wxdb103a128e118619', '拯救熊猫泡泡', 2, 1, 0, 0.0)-->
|
||
<th>渠道ID</th>
|
||
<th>游戏名称</th>
|
||
<th>活跃</th>
|
||
<th>新增</th>
|
||
<th>分享</th>
|
||
<th>K值</th>
|
||
</tr>
|
||
|
||
<tr>
|
||
{% for one in line.get('input') %}
|
||
{% for item in one %}
|
||
<td>{{ item }}</td>
|
||
{% endfor %}
|
||
{% endfor %}
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
|
||
<h1>导出数据:</h1>
|
||
<table border="1">
|
||
<tbody>
|
||
<tr>
|
||
<th>渠道ID</th>
|
||
<th>跳转目标</th>
|
||
<th>跳转次数</th>
|
||
<th>跳转人数</th>
|
||
</tr>
|
||
<tr>
|
||
{% for one in line.output %}
|
||
{% for item in one %}
|
||
<td>{{ item }}</td>
|
||
{% endfor %}
|
||
|
||
</tr>
|
||
{% endfor %}
|
||
</tbody>
|
||
</table>
|
||
{% endfor %}
|
||
</body>
|
||
</html> |