27 lines
788 B
HTML
27 lines
788 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ ticker }} - Archive Status</title>
|
|
<style>
|
|
body { font-family: Georgia, serif; font-size: 18px; max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
h1 { font-size: 1.4em; }
|
|
.back { font-size: 0.85em; }
|
|
.stats { margin: 20px 0; padding: 15px; background: #f5f5f5; }
|
|
.ok { color: #080; }
|
|
.err { color: #c00; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p class="back"><a href="/{{ ticker }}">← Back to {{ ticker }}</a> | <a href="/">All companies</a></p>
|
|
<h1>Archive Status</h1>
|
|
<div class="stats">
|
|
<p class="ok">{{ archived }} of {{ total }} filings archived</p>
|
|
{% if failed > 0 %}
|
|
<p class="err">{{ failed }} failed (SEC may have rate-limited)</p>
|
|
{% endif %}
|
|
</div>
|
|
<p>Files saved to local cache for offline reading.</p>
|
|
</body>
|
|
</html>
|