3410abd70a
Now that full-text searching is set up in the DB, the next step is data population. The adding and editing templates were added as long as routes and base functionality to add single locations. Adding works and editing is almost there but both still need to cleaned up. The basic plumbing will be completed and then the tweaking to account for roles and login status for the sake of security. Part 2 will include clean up and and bulk uploads through the use of CSV files.
41 lines
694 B
Twig
41 lines
694 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
</title>
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<div role="nav-left">
|
|
<a href="/den">The Bad Space</a>
|
|
</div>
|
|
<div role="nav-right">
|
|
|
|
{% if handle is defined %}
|
|
<strong>Hey
|
|
{{ handle }}
|
|
</strong>
|
|
{% endif %}
|
|
<a href="/den/members">Members
|
|
</a>
|
|
<a href="/den/locations/page/1">Locations
|
|
</a>
|
|
<a href="/logout">Bye</a>
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
<main>
|
|
{% block main %}{% endblock %}
|
|
</main>
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html>
|