Biggest thing here is adding the ability to scrobble until the video is 95% done and then not scrobble the same video file again for 15 minutes. This seems hacky, but in practice works pretty well, so long as you don't monkey around with the 95% completion thing. Unlike music, videos are generally watched all the way through.
12 lines
333 B
HTML
12 lines
333 B
HTML
{% 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 %}
|