from django.urls import path from . import views """check""" urlpatterns = [ path('', views.index, name='ztf index'), path('ztf_alerce_agn', views.ztf_alerce_agn, name='ztf alerce agn early'), path('ztf_alerce_sn', views.ztf_alerce_sn, name='ztf alerce sn early'), path('ztf_alerce_vs', views.ztf_alerce_vs, name='ztf alerce vs early'), path('ztf_alerce_bogus', views.ztf_alerce_bogus, name='ztf alerce bogus early'), path('ztf_alerce_asteroid', views.ztf_alerce_asteroid, name='ztf alerce asteroid early'), path('/alerce', views.show_ztf_alerce, name='show ztf alerce'), #path('/match', views.show_survey_match, name='show match'), #path('/nomatch', views.show_survey_nomatch, name='show nomatch'), #path('/transients', views.show_transients, name='show nomatch'), #path('/gaia', views.show_survey_gaia_match, name='show gaia'), path('/source', views.new_astrobasis_source, name='new astrobasis source'), path('/usercat/delete/', views.delete_astrobasis_source, name='delete astrobasis source'), path('/usercat/update/', views.update_astrobasis_source, name='update astrobasis source'), path('/usercat/addmagn/', views.addmagn_astrobasis_source, name='addmagn astrobasis source'), path('/delmagn/', views.delmagn, name='delmagn'), ]