mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
738 B
35 lines
738 B
{% extends "crud/form.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
{% load common_tags %}
|
|
|
|
{% block base_content %}
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
|
|
<div class="row">
|
|
<div class="col-md-12" >
|
|
{{ form.nome|as_crispy_field }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6" >
|
|
{{ form.data_criacao|as_crispy_field }}
|
|
</div>
|
|
<div class="col-md-6" >
|
|
{{ form.data_extincao|as_crispy_field }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12" >
|
|
{{ form.descricao|as_crispy_field }}
|
|
</div>
|
|
</div>
|
|
|
|
<br />
|
|
<input type="submit" value="Salvar" class="btn btn-primary" />
|
|
</form>
|
|
|
|
{% endblock base_content %}
|