You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
{% extends 'base.html' %}
|
|
{% load static %}
|
|
{% block scripts %}
|
|
<script src="{% static 'js/jquery.dataTables.min.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
|
|
{% block body %}
|
|
<div class="row-fluid sortable">
|
|
<div class="box span12">
|
|
<div class="box-header well" data-original-title>
|
|
<h2><i class="icon-align-justify"></i> {{ object.get_event }}</h2>
|
|
</div>
|
|
<div class="box-content">
|
|
<div class="row-fluid">
|
|
<div class="span8">Линк на статистику: <b>{{ request.get_host }}/expo-b/banner/{{ object.link.id }}/stat/</b></div>
|
|
<div class="span4">Пароль: <b>{{ object.link.stat_pswd }}</b></div>
|
|
</div>
|
|
<table class="table table-striped table-bordered bootstrap-datatable datatable">
|
|
<thead>
|
|
<tr>
|
|
<th>Дата</th>
|
|
<th>Показы</th>
|
|
<th>Клики</th>
|
|
<th>Уникальные показы</th>
|
|
<th>Уникальные клики</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% with stats=stats %}
|
|
{% for stat in stats %}
|
|
<tr>
|
|
<td>{{ stat.date|date:"Y-m-d" }}</td>
|
|
<td>{{ stat.view }}</td>
|
|
<td>{{ stat.click }}</td>
|
|
|
|
<td>{{ stat.unique_view }}</td>
|
|
<td>{{ stat.unique_click }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endwith %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |