Files
pypistats.dev/pypistats/templates/admin.html
Flynn a5bb518b88 updates (#31)
* update ignore files

* setup poetry

* add db seeds

* black

* set up compose

* backfill script

* add makefile, update readme

* update poetry

* readme

* Fixes

* cleanup and rate limit changes

* poetry 1.0.5

* some more cleanup

* k8s

* k8s

* update yml

* cleanup and admin

* deploy
2020-08-15 18:36:37 -04:00

21 lines
520 B
HTML

{% extends "layout.html" %}
{% block title %}PyPI Download Stats{% endblock %}
{% block body %}
<h1>Analytics for PyPI packages</h1>
<hr>
<form method="POST" action="/admin">
{{ form.csrf_token }}
{{ form.date.label }}
{{ form.date(size=24) }}
<input type="submit" value="Submit">
</form>
<br>
{% if not date %}
<p>Submit date to run backfill.</p>
{% endif %}
{% if date %}
<br>
{{ date }} submitted.
{% endif %}
{% endblock %}