[templates] Clean up tables

This commit is contained in:
2024-10-02 17:50:18 -04:00
parent ddf2ca5630
commit 176b698f6e
4 changed files with 10 additions and 14 deletions

View File

@ -63,7 +63,6 @@
{% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %}
<tr> <tr>
<td>{{scrobble.timestamp}}</td> <td>{{scrobble.timestamp}}</td>
<td>{{scrobble.logdata}}</td>
<td>{{scrobble.media_obj.publisher}}</td> <td>{{scrobble.media_obj.publisher}}</td>
<td>{% if scrobble.screenshot%}<img src="{{scrobble.screenshot.url}}" width=250 />{% endif %}</td> <td>{% if scrobble.screenshot%}<img src="{{scrobble.screenshot.url}}" width=250 />{% endif %}</td>
</tr> </tr>

View File

@ -52,17 +52,16 @@
<thead> <thead>
<tr> <tr>
<th scope="col">Date</th> <th scope="col">Date</th>
<th scope="col">Title</th> <th scope="col">Source</th>
<th scope="col">Distance</th> <th scope="col">ID</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %}
<tr> <tr>
<td>{{scrobble.timestamp}}</td> <td>{{scrobble.timestamp}}</td>
<td>{{scrobble.logdata}}</td> <td>{{scrobble.media_obj.source}}</td>
<td>{{scrobble.media_obj.publisher}}</td> <td><a href="{{scrobble.source_url_for_user}}">{{scrobble.logdata.source_url_pattern.label}}</a></td>
<td>{% if scrobble.screenshot%}<img src="{{scrobble.screenshot.url}}" width=250 />{% endif %}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>

View File

@ -1,5 +1,6 @@
{% extends "base_list.html" %} {% block title %}Tasks{% endblock %} {% block {% extends "base_list.html" %}
head_extra %} {% block title %}Tasks{% endblock %}
{% block head_extra %}
<style> <style>
dl { dl {
width: 210px; width: 210px;
@ -20,7 +21,9 @@ head_extra %}
float: right; float: right;
} }
</style> </style>
{% endblock %} {% block lists %} {% endblock %}
{% block lists %}
<div class="row"> <div class="row">
<div class="col-md"> <div class="col-md">
<div class="table-responsive">{% include "_scrobblable_list.html" %}</div> <div class="table-responsive">{% include "_scrobblable_list.html" %}</div>

View File

@ -52,17 +52,12 @@
<thead> <thead>
<tr> <tr>
<th scope="col">Date</th> <th scope="col">Date</th>
<th scope="col">Title</th>
<th scope="col">Distance</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %}
<tr> <tr>
<td>{{scrobble.timestamp}}</td> <td>{{scrobble.timestamp}}</td>
<td>{{scrobble.logdata}}</td>
<td>{{scrobble.media_obj.publisher}}</td>
<td>{% if scrobble.screenshot%}<img src="{{scrobble.screenshot.url}}" width=250 />{% endif %}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>