2016-08-01 23:40:04 +02:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% set active_page = "locations" -%}
|
|
|
|
|
|
|
|
{% import "utils.html" as util %}
|
|
|
|
|
|
|
|
{% block container %}
|
|
|
|
<div class="row">
|
2020-02-29 17:23:20 +01:00
|
|
|
<div class="col-md-push-1 col-md-10 darker locations_locations">
|
|
|
|
<h3>Locations</h3>
|
|
|
|
<table class="table table-hover table-condensed">
|
|
|
|
<thead>
|
|
|
|
<tr><th>Name</th><th>Address</th><th></th><th></th><th></th></tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for loc in locations -%}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{{ url_for('general_bp.location', location_id=loc.id) }}">{{ loc.name }}</a></td>
|
|
|
|
<td>{{ loc.address }}<td>
|
|
|
|
<td><a href="{{ loc.website }}"><span class="glyphicon glyphicon-link"></span> {{ loc.website }}</a></td>
|
|
|
|
<td>
|
|
|
|
{% if not current_user.is_anonymous() %}
|
|
|
|
<a href="{{ url_for("order_bp.orders", location_id=loc.id) }}" class="btn btn-primary btn-xs">Create order</a>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{%- endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2016-08-01 23:40:04 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|