15 lines
234 B
HTML
15 lines
234 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Videos{% endblock %}
|
|
|
|
{% block content %}
|
|
{{object}}
|
|
|
|
{% for scrobble in object.scrobble_set.all %}
|
|
<ul>
|
|
<li>{{scrobble}}</li>
|
|
</ul>
|
|
|
|
{% endfor %}
|
|
{% endblock %}
|