covid-formity/templates/admin_index.html

72 lines
2.6 KiB
HTML
Raw Normal View History

2020-03-29 18:34:18 +00:00
{% extends "admin/master.html" %}
{% block body %}
2020-03-30 21:31:21 +00:00
<div class="row">
<div class="col-md-4">
2020-04-01 10:08:44 +00:00
<h2 class="page-header">Fullfillment stats</h2>
2020-03-30 21:31:21 +00:00
<table class="table">
<thead>
<tr>
<th>Status</th>
<th>Handling orga</th>
2020-03-30 21:31:21 +00:00
<th>Count</th>
<th>Delivered / Requested (full)</th>
<th>Delivered / Requested (front)</th>
</tr>
</thead>
<tbody>
{% for rec in stats %}
2020-03-29 18:34:18 +00:00
<tr>
2020-03-30 21:31:21 +00:00
<td>{{ rec.status.name }}</td>
<td>{{ rec.handling_orga }}</td>
2020-03-30 21:31:21 +00:00
<td>{{ rec.count }}</td>
<td>{{ rec.faceshield_full_delivered }} / {{ rec.faceshield_full_required }}</td>
<td>{{ rec.faceshield_front_delivered }} / {{ rec.faceshield_front_required }}</td>
2020-03-29 18:34:18 +00:00
</tr>
2020-03-30 21:31:21 +00:00
{% endfor %}
</tbody>
</table>
2020-04-01 10:08:44 +00:00
<h2 class="page-header">
Creation date <small>excluding spam and rejected</small>
</h2>
2020-03-30 21:36:35 +00:00
<table class="table">
<thead>
<tr>
<th>Status</th>
<th>Count</th>
</tr>
</thead>
<tbody>
{% for row in dstats %}
<tr><td>{{ row.date }}</td><td>{{ row.count }}</td></tr>
{% endfor %}
</tbody>
</table>
2020-03-29 18:34:18 +00:00
</div>
2020-03-30 21:31:21 +00:00
<div class="col-md-6">
<h2 class="page-header">Voivodeship breakdown <small>excluding spam and rejected</small></h2>
2020-03-30 21:31:21 +00:00
<table class="table">
<thead>
<tr>
<th>Voivodeship</th>
<th>Count</th>
<th>Delivered / Requested (full)</th>
<th>Delivered / Requested (front)</th>
</tr>
</thead>
<tbody>
{% for rec in vstats %}
<tr>
<td>{{ rec.voivodeship }}</td>
<td>{{ rec.count }}</td>
<td>{{ rec.faceshield_full_delivered }} / {{ rec.faceshield_full_required }}</td>
<td>{{ rec.faceshield_front_delivered }} / {{ rec.faceshield_front_required }}</td>
</tr>
{% endfor %}
</tbody>
</table>
2020-04-08 16:55:25 +00:00
<p class="text-muted">Jedzenie dla qrde i jagny:</p>
<img src="https://s3.przepisy.pl/przepisy3ii/img/variants/767x0/kanapki-z-poledwica-sopocka-i-pomidorem29246.jpg" class="img-responsive img-thumbnail" style="max-height: 200px" />
2020-03-30 21:31:21 +00:00
</div>
</div>
2020-03-29 18:34:18 +00:00
{% endblock %}