2023-09-21 22:17:52 +02:00
|
|
|
<!-- 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>
|
2023-10-20 15:55:11 +02:00
|
|
|
<tr>
|
|
|
|
<td>Media Files:</td>
|
|
|
|
<td>{{ mediaFiles }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Submissions with no Media Files:</td>
|
|
|
|
<td>{{ missingFiles }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Total Media Size:</td>
|
|
|
|
<td>{{ totalMediaSize }}</td>
|
|
|
|
</tr>
|
2023-09-21 22:17:52 +02:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<!-- Add other statistics here -->
|
|
|
|
{% endblock content %}
|
|
|
|
|