add a new stats page

This commit is contained in:
Andrej Karpathy
2021-11-26 21:57:48 -08:00
parent 6a0ff6a9bf
commit 47fba66712
4 changed files with 48 additions and 8 deletions
+16
View File
@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block variables %}
{% endblock %}
{% block content %}
<div id="statswrap">
<div><b>Current database index:</b></div>
<div>Number of papers: {{ num_papers }}</div>
<div>Earliest paper: {{ earliest_paper }}</div>
<div>Latest paper: {{ latest_paper }}</div>
</div>
{% endblock %}
{% block elements %}
{% endblock %}