mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-17 13:07:28 +02:00
12 lines
267 B
HTML
12 lines
267 B
HTML
{% extends "_base.html" %}
|
|
{% load i18n %}
|
|
{% load bootstrap %}
|
|
{% block content %}
|
|
<div style="padding-top: 1em;">
|
|
<h2>New Labelbase</h2>
|
|
<form method="post" >
|
|
{% csrf_token %}
|
|
{{ form|bootstrap }}
|
|
<input type="submit" value="OK">
|
|
</form>
|
|
{% endblock %}
|