22 lines
522 B
HTML
22 lines
522 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load bootstrap3 %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h3>{% trans "Kaehmy" %}</h3>
|
|
|
|
<div id="input_form">
|
|
<form name="kaehmyForm" action="/kaehmy/submit/" method="post" class="form">{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">
|
|
{% trans "Submit" %}
|
|
</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|