56 lines
1.6 KiB
HTML
56 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load origin %}
|
|
|
|
{% load ietf_filters staticfiles bootstrap3 %}
|
|
|
|
{% block title %}{{ stats_title }}{% endblock %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static 'bootstrap-datepicker/css/bootstrap-datepicker3.min.css' %}">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
|
|
<h1>Document statistics</h1>
|
|
|
|
<div class="stats-options well">
|
|
<div>
|
|
Show:
|
|
<div class="btn-group">
|
|
{% for slug, label, url in possible_stats_types %}
|
|
<a class="btn btn-default {% if slug == stats_type %}active{% endif %}" href="{{ url }}">{{ label }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
Document type:
|
|
<div class="btn-group">
|
|
{% for slug, label, url in possible_document_types %}
|
|
<a class="btn btn-default {% if slug == document_type %}active{% endif %}" href="{{ url }}">{{ label }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
Time:
|
|
<div class="btn-group">
|
|
{% for slug, label, url in possible_time_choices %}
|
|
<a class="btn btn-default {% if slug == time_choice %}active{% endif %}" href="{{ url }}">{{ label }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include content_template %}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{% static 'highcharts/highcharts.js' %}"></script>
|
|
<script src="{% static 'highcharts/modules/exporting.js' %}"></script>
|
|
<script src="{% static 'highcharts/modules/offline-exporting.js' %}"></script>
|
|
<script src="{% static 'ietf/js/document-stats.js' %}"></script>
|
|
{% endblock %}
|