|
@@ -1,47 +1,83 @@
|
|
|
{% extends "base_list.html" %}
|
|
|
|
|
|
{% block title %}Scrobble Imports{% endblock %}
|
|
|
+
|
|
|
{% block lists %}
|
|
|
<div class="row">
|
|
|
+ {% if tsv_imports %}
|
|
|
<div class="col-md">
|
|
|
+ <h3>Audioscrobbler</h3>
|
|
|
<div class="table-responsive">
|
|
|
<table class="table table-striped table-sm">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th scope="col">Type</th>
|
|
|
- <th scope="col">Date</th>
|
|
|
- <th scope="col">Scrobbles Imported</th>
|
|
|
+ <th scope="col">Started</th>
|
|
|
<th scope="col">Finished</th>
|
|
|
+ <th scope="col">Scrobbles</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
{% for obj in tsv_imports %}
|
|
|
<tr>
|
|
|
- <td><a href="{{obj.get_absolute_url}}">{{obj.import_type}}</a></td>
|
|
|
<td><a href="{{obj.get_absolute_url}}">{{obj.human_start}}</a></td>
|
|
|
- <td>{{obj.process_count}}</td>
|
|
|
<td>{{obj.processed_finished}}</td>
|
|
|
+ <td>{{obj.process_count}}</td>
|
|
|
</tr>
|
|
|
{% endfor %}
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+ {% if lastfm_imports %}
|
|
|
+ <div class="col-md">
|
|
|
+ <h3>LastFM</h3>
|
|
|
+ <div class="table-responsive">
|
|
|
+ <table class="table table-striped table-sm">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th scope="col">Started</th>
|
|
|
+ <th scope="col">Finished</th>
|
|
|
+ <th scope="col">Scrobbles</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
{% for obj in lastfm_imports %}
|
|
|
<tr>
|
|
|
- <td><a href="{{obj.get_absolute_url}}">{{obj.import_type}}</a></td>
|
|
|
<td><a href="{{obj.get_absolute_url}}">{{obj.human_start}}</a></td>
|
|
|
- <td>{{obj.process_count}}</td>
|
|
|
<td>{{obj.processed_finished}}</td>
|
|
|
+ <td>{{obj.process_count}}</td>
|
|
|
</tr>
|
|
|
{% endfor %}
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+ {% if koreader_imports %}
|
|
|
+ <div class="col-md">
|
|
|
+ <h3>KOReader</h3>
|
|
|
+ <div class="table-responsive">
|
|
|
+ <table class="table table-striped table-sm">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th scope="col">Started</th>
|
|
|
+ <th scope="col">Finished</th>
|
|
|
+ <th scope="col">Scrobbles</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
{% for obj in koreader_imports %}
|
|
|
<tr>
|
|
|
- <td><a href="{{obj.get_absolute_url}}">{{obj.import_type}}</a></td>
|
|
|
<td><a href="{{obj.get_absolute_url}}">{{obj.human_start}}</a></td>
|
|
|
- <td>{{obj.process_count}}</td>
|
|
|
<td>{{obj.processed_finished}}</td>
|
|
|
+ <td>{{obj.process_count}}</td>
|
|
|
</tr>
|
|
|
{% endfor %}
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ {% endif %}
|
|
|
</div>
|
|
|
-{% endblock %}
|
|
|
+{% endblock %}
|