tubearchivist/tubearchivist/home/templates/home/settings.html

43 lines
1.2 KiB
HTML
Raw Normal View History

{% extends "home/base_settings.html" %}
{% load static %}
{% block settings_content %}
<div class="title-bar">
2023-08-31 07:34:08 +00:00
<h1>Your Archive</h1>
2021-09-05 17:10:14 +00:00
</div>
2023-09-02 04:22:03 +00:00
<div class="settings-item">
2023-08-31 07:34:08 +00:00
<h2>Main overview</h2>
2023-09-02 09:31:43 +00:00
<div id="primaryBox" class="info-box info-box-4">
<p id="loading">Loading...</p>
</div>
</div>
2023-09-02 04:22:03 +00:00
<div class="settings-item">
2023-08-31 15:28:36 +00:00
<h2>Watch Progress</h2>
2023-09-02 09:31:43 +00:00
<div id="watchBox" class="info-box info-box-3">
<p id="loading">Loading...</p>
</div>
2023-08-31 07:34:08 +00:00
</div>
2023-09-02 04:22:03 +00:00
<div class="settings-item">
<h2>Download History</h2>
2023-09-02 09:31:43 +00:00
<div id="downHistBox" class="info-box info-box-4">
<p id="loading">Loading...</p>
</div>
2023-09-02 04:22:03 +00:00
</div>
<div class="settings-item">
2023-09-01 02:28:56 +00:00
<h2>Biggest Channels</h2>
<div class="info-box description-box">
<table>
<thead>
<tr>
<th>Name</th>
<th>Videos</th>
<th>Duration</th>
<th>Media Size</th>
</tr>
</thead>
<tbody id="biggestChannelTable"></tbody>
</table>
</div>
</div>
2023-08-31 07:34:08 +00:00
<script type="text/javascript" src="{% static 'stats.js' %}"></script>
{% endblock settings_content %}