Files
web2.0-backend/ohlhafv/templates/new.html
T
2018-01-28 18:54:45 +02:00

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 %}