Add: stats page template
This commit is contained in:
parent
0c5a33a9ed
commit
b27e53f287
1 changed files with 34 additions and 0 deletions
34
archivist/sites/templates/fa/stats.html
Normal file
34
archivist/sites/templates/fa/stats.html
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
<!-- stats_template.html -->
|
||||||
|
|
||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block title %}Statistics{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<h1>Furaffinity Archive Statistics</h1>
|
||||||
|
<p>Some metrics from the Furaffinity Archive</p>
|
||||||
|
<table class="table table-striped border border-2 rounded">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Metric:</th>
|
||||||
|
<th>Count:</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Submissions:</td>
|
||||||
|
<td>{{ submissions }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Users:</td>
|
||||||
|
<td>{{ users }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Tags:</td>
|
||||||
|
<td>{{ tags }}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<!-- Add other statistics here -->
|
||||||
|
{% endblock content %}
|
||||||
|
|
Loading…
Reference in a new issue