|
@@ -52,17 +52,16 @@
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th scope="col">Date</th>
|
|
|
- <th scope="col">Title</th>
|
|
|
- <th scope="col">Distance</th>
|
|
|
+ <th scope="col">Source</th>
|
|
|
+ <th scope="col">ID</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
{% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %}
|
|
|
<tr>
|
|
|
<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>
|
|
|
+ <td>{{scrobble.media_obj.source}}</td>
|
|
|
+ <td><a href="{{scrobble.source_url_for_user}}">{{scrobble.logdata.source_url_pattern.label}}</a></td>
|
|
|
</tr>
|
|
|
{% endfor %}
|
|
|
</tbody>
|