mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
10 years ago
committed by
Marcio Mazza
5 changed files with 58 additions and 2 deletions
@ -0,0 +1 @@ |
|||||
|
<p>Incluir comissão</p> |
@ -0,0 +1,23 @@ |
|||||
|
{% load i18n %} |
||||
|
{% load tz %} |
||||
|
|
||||
|
<p>Comissões</p> |
||||
|
<a href="/admin/comissoes/comissao/add/">Incluir Comissão</a> |
||||
|
|
||||
|
<table class="table table-hover"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
<th>{% trans 'Nome' %}</th> |
||||
|
<th>{% trans 'Sigla' %}</th> |
||||
|
<th>{% trans 'Tipo' %}</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
{% for comissao in comissoes %} |
||||
|
<td>{{ comissao.nome }}</td> |
||||
|
<td>{{ comissao.sigla }}</td> |
||||
|
<td>{{ comissao.tipo }}</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</tbody> |
||||
|
</table> |
@ -0,0 +1,10 @@ |
|||||
|
from django.conf.urls import patterns, url |
||||
|
|
||||
|
from comissoes.views import (ListaComissoes, |
||||
|
CriarComissao) |
||||
|
|
||||
|
urlpatterns = patterns( |
||||
|
'comissoes.views', |
||||
|
url(r'^$', ListaComissoes.as_view(), name='ListaComissoes'), |
||||
|
#url(r'^incluir$', CriarComissao.as_view(), name='CriarComissao'), |
||||
|
) |
@ -1,3 +1,20 @@ |
|||||
from django.shortcuts import render |
from vanilla import CreateView, DeleteView, ListView, UpdateView |
||||
|
from django.core.urlresolvers import reverse_lazy |
||||
|
from django.shortcuts import render, get_object_or_404 |
||||
|
|
||||
# Create your views here. |
from comissoes.models import Comissao |
||||
|
|
||||
|
class ListaComissoes(ListView): |
||||
|
model = Comissao |
||||
|
context_object_name = 'comissoes' |
||||
|
template_name = 'comissoes/lista_comissao.html' |
||||
|
|
||||
|
class CriarComissao(CreateView): |
||||
|
model = Comissao |
||||
|
success_url = reverse_lazy('ListaComissoes') |
||||
|
#template_name = 'comissoes/criar_comissao.html' |
||||
|
#fields = [''] |
||||
|
|
||||
|
class DetalheComissao(ListView): |
||||
|
model = Comissao |
||||
|
context_object_name = 'comissoes' |
Loading…
Reference in new issue