Files
vrobbler/vrobbler/templates/tasks/task_list.html
Colin Powell 042a3eb737
Some checks failed
build / test (push) Has been cancelled
[templates] Add aggregate data
2026-06-15 15:26:46 -04:00

33 lines
562 B
HTML

{% extends "base_list.html" %}
{% block title %}Tasks{% endblock %}
{% block head_extra %}
<style>
dl {
width: 210px;
float: left;
margin-right: 10px;
}
dt a {
color: white;
text-decoration: none;
font-size: smaller;
}
img {
height: 200px;
width: 200px;
object-fit: cover;
}
dd .right {
float: right;
}
</style>
{% endblock %}
{% block lists %}
<div class="row">
<div class="col-md">
<div class="table-responsive">{% include "_longplay_scrobblable_list.html" %}</div>
</div>
</div>
{% endblock %}