2017-07-21 10:30:55 +01:00
|
|
|
{% extends "views/platform-admin/_base_template.html" %}
|
2016-12-28 14:44:53 +00:00
|
|
|
{% from "components/textbox.html" import textbox %}
|
2017-07-21 09:14:29 +01:00
|
|
|
{% from "components/big-number.html" import big_number %}
|
2017-01-03 10:45:06 +00:00
|
|
|
{% from "components/checkbox.html" import checkbox %}
|
2016-12-28 14:44:53 +00:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2016-11-14 16:42:08 +00:00
|
|
|
{% from "components/table.html" import mapping_table, field, stats_fields, row_group, row, right_aligned_field_heading, hidden_field_heading, text_field %}
|
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
{% block per_page_title %}
|
|
|
|
|
Platform admin
|
2016-05-24 15:52:44 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2017-07-21 10:30:55 +01:00
|
|
|
{% block platform_admin_content %}
|
|
|
|
|
|
2017-07-31 11:33:39 +01:00
|
|
|
<h1 class="heading-large">
|
|
|
|
|
Summary
|
|
|
|
|
</h1>
|
|
|
|
|
|
2017-07-21 10:30:55 +01:00
|
|
|
<details>
|
|
|
|
|
<summary>Apply filters</summary>
|
|
|
|
|
<form autocomplete="off" method="get">
|
|
|
|
|
{{ textbox(form.start_date, hint="Enter start date in format YYYY-MM-DD") }}
|
|
|
|
|
{{ textbox(form.end_date, hint="Enter end date in format YYYY-MM-DD") }}
|
|
|
|
|
{{ checkbox(form.include_from_test_key) }}
|
|
|
|
|
</br>
|
|
|
|
|
<input type="submit" class="button">
|
|
|
|
|
</form>
|
|
|
|
|
</details>
|
2016-12-06 12:38:12 +00:00
|
|
|
|
2017-07-21 09:14:29 +01:00
|
|
|
{% include "views/platform-admin/_global_stats.html" %}
|
2016-05-25 16:51:09 +01:00
|
|
|
|
2016-05-24 15:52:44 +01:00
|
|
|
{% endblock %}
|