19 lines
820 B
HTML
19 lines
820 B
HTML
{% extends "bootstrap/base.html" %}
|
|
{% block title %}Wigan Homebrew Club Competition Entry{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="jumbotron text-center">
|
|
<h2>Wigan Homebrew Club Competition Entry</h2>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-2"></div>
|
|
<div class="col-md-8">
|
|
<p><p>You have been entered into the competition to brew a <strong>{{ brew_name }}</strong>, which will be judged at the meeting in <strong>{{ brew_month }}</strong>.</p>
|
|
<br/>
|
|
<div class="alert alert-success lead" role="alert">Please mark all of your bottlecaps with the following identifier: <strong>{{ identifier }}</strong></div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %} |