27 lines
962 B
HTML
27 lines
962 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<section class="hero" data-test="home-hero">
|
|
<p class="eyebrow">Dashboard</p>
|
|
<h1>Keep up with your tracked scholars</h1>
|
|
<p class="lede">Run ingestion, review fresh publications, and inspect recent outcomes from one screen.</p>
|
|
<div class="stat-strip">
|
|
<article class="stat-item">
|
|
<p class="stat-label">New Since Last Run</p>
|
|
<p class="stat-value">{{ dashboard.unread_publications | length }}</p>
|
|
</article>
|
|
<article class="stat-item">
|
|
<p class="stat-label">Recent Runs</p>
|
|
<p class="stat-value">{{ dashboard.run_history | length }}</p>
|
|
</article>
|
|
<article class="stat-item">
|
|
<p class="stat-label">Automation Delay</p>
|
|
<p class="stat-value">{{ dashboard.run_controls.request_delay_seconds }}s</p>
|
|
</article>
|
|
</div>
|
|
</section>
|
|
|
|
{% for section_template in dashboard.section_templates %}
|
|
{% include section_template %}
|
|
{% endfor %}
|
|
{% endblock %}
|