Changed grade template logic once again.
[cascardo/eventmanager.git] / templates / editar_trabalho.html
1 {% extends "base.html" %}
2 {% block content %}
3
4 <h2>Editar trabalho</h2>
5
6 {% if formulario %}
7 <form method="post" action="">
8 <table>  {{ formulario.as_table }}</table>
9 <input type="submit" value="Modificar trabalho"/>
10 </form>
11
12   
13
14 {% else %}
15   <h3>O trabalho selecionado n&atilde;o existe, verifique o link</h3>
16 {% endif %}
17
18 {% endblock %}