thebadspace/templates/back/locations.twig

44 lines
1.1 KiB
Twig
Raw Normal View History

{% extends "base/frame.twig" %}
{% block stylesheets %}
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
{% endblock %}
{% block main %}
<section role="loc-index">
<h1>
Location Listing
</h1>
{% if notice is defined %}
<div role="system-notice">
{{ notice }}
</div>
{% endif %}
{% if mode == "add" %}
<h2>Add New Location</h2>
{{ include("forms/add-location.twig") }}
{% elseif mode =='bulk-add' %}
<h2>Add Multiple Locations</h2>
{{ include("forms/bulk-add-location.twig") }}
{% elseif mode == "edit" %}
<h2>Editing
{{ location.name }}</h2>
{{ include("forms/edit-location.twig") }}
{% else %}
<h2>Take care. These are bad places.</h2>
<a href="/den/locations/add">Add Location</a>
|
<a href="/den/locations/bulk-add">Add Multiple Locations</a>
<br>
<h3>Bad Spaces</h3>
{% for location in list.locations %}
<sup>ID:{{ location.id }}</sup>
<a href="/den/locations/edit/{{ location.uuid }}">
{{ location.name }}</a><br/>
{% endfor %}
{% endif %}
</section>
{% endblock %}