mirror of
https://github.com/nikdoof/vapemap.git
synced 2025-12-25 23:59:22 +00:00
12 lines
232 B
HTML
12 lines
232 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% load bootstrap %}
|
|
|
|
{% block content %}
|
|
<form class="form" method="post">
|
|
{{ form|bootstrap }}
|
|
|
|
<input class="btn" type="submit" value="{% trans 'Submit' %}" />
|
|
</form>
|
|
{% endblock %}
|