From 74c5f30ab878a914d3edb51040f4d78054684947 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 22 Feb 2019 11:32:23 -0800 Subject: add general and container-specific stats --- python/fatcat_web/templates/stats.html | 48 ++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 python/fatcat_web/templates/stats.html (limited to 'python/fatcat_web/templates') diff --git a/python/fatcat_web/templates/stats.html b/python/fatcat_web/templates/stats.html new file mode 100644 index 00000000..92205b3d --- /dev/null +++ b/python/fatcat_web/templates/stats.html @@ -0,0 +1,48 @@ +{% extends "base.html" %} +{% block body %} + +

Stats

+ +You can also fetch these numbers as JSON. + +

Changelog

+ +

Latest changelog index is {{ stats.changelog.latest.index }} ({{ stats.changelog.latest.timestamp}}). + +

Entities

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
"Papers"Total{{ stats.papers.total }}
Fulltext on web{{ stats.papers.in_web }}
"Gold" Open Access{{ stats.papers.is_oa }}
In a Keepers/KBART archive{{ stats.papers.in_kbart }}
On web, not in Keepers{{ stats.papers.in_web_not_kbart }}
ReleasesTotal{{ stats.release.total }}
References (raw, unlinked){{ stats.release.refs_total }}
ContainersTotal{{ stats.container.total }}
+ +
+"Papers" are journal articles and conference proceedings, a subset of Releases + +{% endblock %} -- cgit v1.2.3