# urls.py
from django.urls import path
from . import views
from .views import relatorio_completo_view
from .views import relatorio_resumido_view, gerar_termo_referencia_view


urlpatterns = [
    path(
        'calculotermica/calcular_carga_termica/<int:projeto_id>/<int:ambiente_id>/',
        views.resultados_ambiente_termica,
        name='resultados_ambiente_termica'
    ),
    path('projeto/<int:projeto_id>/ambiente/<int:ambiente_id>/relatorio/', relatorio_completo_view, name='gerar_relatorio_calculo'),
    path('projeto/<int:projeto_id>/ambiente/<int:ambiente_id>/relatorio_resumido/', relatorio_resumido_view, name='relatorio_resumido'),
    path('projeto/<int:projeto_id>/termo-referencia/', views.gerar_termo_referencia_view, name='gerar_termo_referencia'),



    
    ]
