datatracker/ietf/templates/stats/index.html
Lars Eggert df2565096d bootstrap3 -> django_bootstrap5
Only load the module, no other changes yet.
 - Legacy-Id: 19586
2021-11-09 14:09:28 +00:00

21 lines
586 B
HTML

{% extends "base.html" %}
{% load origin %}
{% load ietf_filters static django_bootstrap5 %}
{% block content %}
{% origin %}
<h1>{% block title %}Statistics{% endblock %}</h1>
<p>Statistics on...</p>
<ul>
<li><a href="{% url "ietf.stats.views.document_stats" %}">Drafts/RFCs (authors, countries, formats, ...)</a></li>
<li><a href="{% url "ietf.stats.views.meeting_stats" %}">Meeting attendance</a></li>
<li><a rel="nofollow" href="{% url "ietf.stats.views.review_stats" %}">Reviews of drafts in review teams</a> (requires login)</li>
</ul>
{% endblock %}