blob: f743d1b8bd9c6a76f08a5f24de839c5d874c28d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends "base.html" %}
{% block content %}
<div id="title" class="text-center">
<h2>{{ beer_data['name'] if beer_data != None else 'DELICOUS BEER' }}</h2>
</div>
<div id="stats">
<table class="table">
<tr>
<th scope="col">Parent Style</th>
<th scope="col">Specific Style</th>
<th scope="col">Alcohol by Volume </th>
</tr>
<tr>
<td>{{ beer_data['parent_style'] if beer_data != None else 'ASS BEER' }}</td>
<td>{{ beer_data['parent_style'] if beer_data != None else 'TURBO ASS BEER' }}</td>
<td>{{ beer_data['parent_style'] if beer_data != None else 'BETWEEN 0 and 100' }}</td>
</tr>
</table>
</div>
{% endblock %}
|