2023-01-13 00:43:54 +01:00
|
|
|
{% extends "base/frame.twig" %}
|
|
|
|
{% block stylesheets %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
<section role="listings">
|
|
|
|
<h1>The Bad Space Listings</h1>
|
|
|
|
<h2>Page
|
2023-01-24 04:59:51 +01:00
|
|
|
{{ options.currentPage }}
|
|
|
|
of
|
|
|
|
{{ options.list.total }}</h2>
|
2023-01-13 00:43:54 +01:00
|
|
|
{% for location in options.list.locations %}
|
|
|
|
|
2023-01-24 04:59:51 +01:00
|
|
|
<a href="/location/{{ location.uuid }}">
|
|
|
|
<label>{{ location.id }}</label>
|
|
|
|
{{ location.name }}</a>
|
|
|
|
<br/>
|
2023-01-13 00:43:54 +01:00
|
|
|
{% endfor %}
|
2023-01-24 04:59:51 +01:00
|
|
|
<a href="/listings/page/{{ options.prevPage }}">Previous</a>
|
|
|
|
<a href="/listings/page/{{ options.nextPage }}">Next</a>
|
2023-01-13 00:43:54 +01:00
|
|
|
</section>
|
|
|
|
{% endblock %}
|