25 lines
1.5 KiB
Python
25 lines
1.5 KiB
Python
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('<str:alerce_pk>/alerce', views.show_ztf_alerce, name='show ztf alerce'),
|
|
#path('<int:cat_id>/match', views.show_survey_match, name='show match'),
|
|
#path('<int:cat_id>/nomatch', views.show_survey_nomatch, name='show nomatch'),
|
|
#path('<int:cat_id>/transients', views.show_transients, name='show nomatch'),
|
|
#path('<int:cat_id>/gaia', views.show_survey_gaia_match, name='show gaia'),
|
|
path('<int:source_id>/source', views.new_astrobasis_source, name='new astrobasis source'),
|
|
path('<int:source_id>/usercat/delete/<int:heasarcbase_id>', views.delete_astrobasis_source, name='delete astrobasis source'),
|
|
path('<int:source_id>/usercat/update/<int:heasarcbase_id>', views.update_astrobasis_source, name='update astrobasis source'),
|
|
path('<int:source_id>/usercat/addmagn/<int:heasarcbase_id>', views.addmagn_astrobasis_source, name='addmagn astrobasis source'),
|
|
path('<int:magnitude_id>/delmagn/<int:heasarcbase_id>', views.delmagn, name='delmagn'),
|
|
]
|