from django.urls import path
from . import views
from .views import gerar_relatorio_completo


urlpatterns = [
    path('lista_ambientes_carga_termica/<int:projeto_id>/<str:ambiente_nome>/', views.lista_projetos_ambientes, name='lista_projetos_ambientes'),
    path('gerar_relatorio/<int:projeto_id>/<int:ambiente_id>/', views.gerar_relatorio_ambiente, name='gerar_relatorio_ambiente'),
    path('salvar_tipo_aparelho/<int:projeto_id>/<str:ambiente_nome>/', views.salvar_tipo_aparelho, name='salvar_tipo_aparelho'),
    path('gerar_relatorio_projeto/<int:projeto_id>/', views.gerar_relatorio_projeto, name='gerar_relatorio_projeto'),
    path('projeto/<int:projeto_id>/relatorio-completo/', gerar_relatorio_completo, name='gerar_relatorio_completo'),


]


