26 lines
644 B
HTML
26 lines
644 B
HTML
{% extends "ohlhafv/base.html" %}
|
|
|
|
{% load bootstrap3 %}
|
|
{% load i18n %}
|
|
|
|
{% block navigation %}
|
|
{% include "ohlhafv/navigation.html" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h3>{% trans "Challenge your foe(s) to combat!" %}</h3>
|
|
|
|
<div id="input_form">
|
|
<form name="ohlhafvForm" action="/ohlhafv/submit/" method="post" class="form">{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">
|
|
{% trans "Challenge" %}
|
|
</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|