Big reorg to support pacakging
This commit is contained in:
11
vrobbler/templates/scrobbles/scrobble_list.html
Normal file
11
vrobbler/templates/scrobbles/scrobble_list.html
Normal file
@ -0,0 +1,11 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Last watched{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<ul>
|
||||
{% for scrobble in object_list %}
|
||||
<li>{{scrobble.timestamp|date:"D, M j Y"}}: <a href="https://www.imdb.com/title/{{scrobble.video.imdb_id}}">{{scrobble.video}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user