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.
28 lines
727 B
28 lines
727 B
9 years ago
|
{% extends "protocoloadm/protocoloadm_detail.html" %}
|
||
|
{% load i18n %}
|
||
|
{% block detail_content %}
|
||
|
|
||
|
{% if form.errors %}
|
||
|
{% for field in form %}
|
||
|
{% for error in field.errors %}
|
||
|
<p> {{ errors }} </p>
|
||
|
{% endfor %}
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
|
||
|
<form method="POST">
|
||
|
{% csrf_token %}
|
||
|
<fieldset>
|
||
|
Número / Ano
|
||
|
<input type="text" id="numero_protocolo" name="numero_protocolo" /> /
|
||
|
|
||
|
<input type="text" id="ano_protocolo" name="ano_protocolo" />
|
||
|
</br>
|
||
|
Motivo da Anulação
|
||
|
<textarea id="justificativa_anulacao" name="justificativa_anulacao">
|
||
|
</textarea>
|
||
|
</br>
|
||
|
<input type="submit" value="Anular" class="button primary" />
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
{% endblock detail_content %}
|