15 lines
299 B
HTML
15 lines
299 B
HTML
{% extends "base_list.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %}Birding Locations{% endblock %}
|
|
|
|
{% block lists %}
|
|
<div class="row">
|
|
<div class="col-md">
|
|
<div class="table-responsive">
|
|
{% include "_scrobblable_list.html" %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|