scrobble_list.html 333 B

1234567891011
  1. {% extends "base.html" %}
  2. {% block title %}Last watched{% endblock %}
  3. {% block content %}
  4. <ul>
  5. {% for scrobble in object_list %}
  6. <li>{{scrobble.timestamp|date:"D, M j Y"}}: <a href="https://www.imdb.com/title/{{scrobble.video.imdb_id}}">{{scrobble.video}}</a></li>
  7. {% endfor %}
  8. </ul>
  9. {% endblock %}