32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
|
{% extends "layout.html" %}
|
||
|
{% set active_page = "locations" -%}
|
||
|
|
||
|
{% import "utils.html" as util %}
|
||
|
|
||
|
{% block container %}
|
||
|
<div class="row" xmlns="http://www.w3.org/1999/html">
|
||
|
<div class="col-md-push-1 col-md-10 darker">
|
||
|
<h3>Location: {{ location.name }}</h3>
|
||
|
<span class="glyphicon glyphicon-home"></span>: {{ location.address }} <br/>
|
||
|
<span class="glyphicon glyphicon-phone"></span>: {{ location.telephone }} <br/>
|
||
|
<span class="glyphicon glyphicon-link"></span>: <a href="{{ location.website}}">{{ location.website }}</a>
|
||
|
</div>
|
||
|
<div class="col-md-push-1 col-md-10 darker">
|
||
|
<h3 id="order-title">Products</h3>
|
||
|
<table class="table table-hover table-condensed">
|
||
|
<thead>
|
||
|
<tr><th>Name</th><th>Price</th></tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for prod in location.products -%}
|
||
|
<tr>
|
||
|
<td>{{ prod.name }}</td>
|
||
|
<td>{{ prod.price|euro }}<td>
|
||
|
</tr>
|
||
|
{%- endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|