forked from projects/thebadspace
26f3cbe994
Bulk uploading has been added and some inconsistencies in the templates have been addressed. Still needs work but it's starting to feel like a cohesive experience. With the base data entry funcationality in place, now really polishing can begin as well as establishing what roles can do what. Smoothing out entry editing will be addressed as well.
44 lines
1.1 KiB
Twig
44 lines
1.1 KiB
Twig
{% 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 %}
|