from django.contrib import admin
from django.urls import path
from .views import HomePageView, Table
from estadisticas import views

urlpatterns = [
    #path('', HomePageView.as_view(), name='home'),
    path('', views.Table, name ="table"),
    path('generar_informe/', views.generar_informe, name='generar_informe'),    

    #path('aplicaciones/', AplicacionesPageView.as_view(), name='aplicaciones'),
    #path('about/', AboutPageView.as_view(), name='about'),
]
