44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
{% extends "base_list.html" %}
|
|
|
|
{% block title %}Board Games{% 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">
|
|
<table class="table table-striped table-sm">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Title</th>
|
|
<th scope="col">Scrobbles</th>
|
|
<th scope="col">Start</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for obj in object_list %}
|
|
<tr>
|
|
<td><a href="{{obj.get_absolute_url}}">{{obj}}</a></td>
|
|
{% if request.user.is_authenticated %}
|
|
<td>{{obj.scrobble_count}}</td>
|
|
<td><a type="button" class="btn btn-sm btn-primary" href="{{obj.get_start_url}}">Scrobble</a></td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|