mirror of
https://github.com/LukeHagar/pypistats.dev.git
synced 2025-12-06 04:21:09 +00:00
* 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
21 lines
520 B
HTML
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 %}
|