Files
web2.0-backend/templates/ohlhafv/new.html
T
2022-08-03 22:46:14 +03: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 %}