NDOJ/templates/organization/new.html
2023-05-20 08:54:17 +09:00

12 lines
No EOL
376 B
HTML
Executable file

{% extends "base.html" %}
{% block js_media %}{{ form.media.js }}{% endblock %}
{% block media %}{{ form.media.css }}{% endblock %}
{% block body %}
<form action="" method="post" class="form-area">
{% csrf_token %}
<table border="0" style="text-align:left">{{ form.as_table() }}</table>
<button type="submit">{{ _('Create') }}</button>
</form>
{% endblock %}