From b03bfc8f3fd84141738f775b273a99850d78e1ff Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 12 Nov 2018 23:18:56 -0800 Subject: refactor python modules --- python/fatcat_web/templates/stats.html | 104 +++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 python/fatcat_web/templates/stats.html (limited to 'python/fatcat_web/templates/stats.html') diff --git a/python/fatcat_web/templates/stats.html b/python/fatcat_web/templates/stats.html new file mode 100644 index 00000000..6a37dcee --- /dev/null +++ b/python/fatcat_web/templates/stats.html @@ -0,0 +1,104 @@ +{% extends "base.html" %} +{% block body %} + +

Entity Statistics

+ +
+
+ {{ stats.entity_counts.work }} +
+
+ Works +
+
+ +
+ +
+
+ {{ stats.entity_counts.release }} +
+
+ Releases +
+
+ +
+
+ {{ stats.releases_with_dois }} +
+
+ ... with DOIs +
+
+ +
+
+ {{ stats.releases_with_dois }} +
+
+ ... with a File +
+
+ +
+ +
+
+ {{ stats.entity_counts.container }} +
+
+ Containers +
+
+ +
+
+ {{ stats.containers_with_issnls }} +
+
+ ... with an ISSN-L +
+
+ +
+ +
+
+ {{ stats.entity_counts.creator }} +
+
+ Creators +
+
+ +
+
+ {{ stats.creators_with_orcids }} +
+
+ ... with an ORCID +
+
+ +
+ +
+
+ {{ stats.entity_counts.file }} +
+
+ Files +
+
+ +
+
+ {{ stats.files_with_releases }} +
+
+ ... with a Release +
+
+ +{% endblock %} -- cgit v1.2.3