18 lines
461 B
HTML
18 lines
461 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load origin %}
|
|
|
|
{% load ietf_filters staticfiles bootstrap3 %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
|
|
<h1>{% block title %}Statistics{% endblock %}</h1>
|
|
|
|
<ul>
|
|
<li><a href="{% url "ietf.stats.views.document_stats" %}">Documents (number of authors, size, formats used)</a></li>
|
|
<li><a rel="nofollow" href="{% url "ietf.stats.views.review_stats" %}">Reviews in review teams</a> (requires login)</li>
|
|
</ul>
|
|
|
|
{% endblock %}
|