diff --git a/sigi/apps/eventos/admin_urls.py b/sigi/apps/eventos/admin_urls.py index d55e0b3..b2f93b5 100644 --- a/sigi/apps/eventos/admin_urls.py +++ b/sigi/apps/eventos/admin_urls.py @@ -1,12 +1,13 @@ from django.urls import path from sigi.apps.eventos import views +from sigi.apps.eventos.views import EventosPorUfReportView, SolicitacoesPorPeriodoReportView, CalendarioReportView, AlocacaoEquipeReportView urlpatterns = [ - path("calendario/", views.calendario, name="eventos_calendario"), + path("calendario/", CalendarioReportView.as_view(), name="eventos_calendario"), path( - "alocacaoequipe/", views.alocacao_equipe, name="eventos_alocacaoequipe" + "alocacaoequipe/", AlocacaoEquipeReportView.as_view(), name="eventos_alocacaoequipe" ), - path("eventosporuf/", views.eventos_por_uf, name="eventos_eventosporuf"), + path("eventosporuf/", EventosPorUfReportView.as_view(), name="eventos_eventosporuf"), path( "alunosporuf/", views.AlunosPorUfReportView.as_view(), @@ -14,7 +15,7 @@ urlpatterns = [ ), path( "solicitacoesporperiodo/", - views.solicitacoes_por_periodo, + SolicitacoesPorPeriodoReportView.as_view(), name="eventos_solicitacoesporperiodo", ), path( diff --git a/sigi/apps/eventos/templates/eventos/calendario.html b/sigi/apps/eventos/templates/eventos/calendario.html index 0354a80..14207d3 100644 --- a/sigi/apps/eventos/templates/eventos/calendario.html +++ b/sigi/apps/eventos/templates/eventos/calendario.html @@ -22,17 +22,76 @@
+
- {{ form }} + + {% for field in form %} + {% if field.name != "mes_ano" and field.name != "categorias" and field.name != "status" %} + {{ field }} + {% endif %} + + {% endfor %} + + +
+
+ Categorias: + {{ form.categorias }} +
+
+ + +
+
+ Status: + {{ form.status }} +
+
+ + +
+
+ Período: +
+ + +
+
+ + +
+ + +
+
+