2024-04-27 09:33:09 +00:00
|
|
|
from django.urls import path
|
|
|
|
from scriptAudit import views
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
|
|
urlpatterns = [
|
2024-07-02 08:24:31 +00:00
|
|
|
# path("home", views.AuditHomeView.as_view(), name="upload_audit"),#fetch from backup
|
2024-05-03 05:53:28 +00:00
|
|
|
path("counter_run", views.Get_Counter.as_view(), name="counter_run"),
|
2024-07-02 08:24:31 +00:00
|
|
|
# path("fetch_in_counter", views.Fetch_in_Counter.as_view(), name="fetch_in_counter"),
|
|
|
|
path("audit-blockchain_", views.AuditedScriptsView_Without_blockchain.as_view(), name="new_audited_page"), #new audited page
|
|
|
|
path("audits1", views.AuditedScriptsView_With_Blockchain.as_view(), name="new_audited_page1"), #new audited page
|
2024-04-27 09:33:09 +00:00
|
|
|
path("download",views.DownloadScript.as_view()),
|
|
|
|
path("delete_scripts/<str:screen_play>", views.DeleteScriptAPIView.as_view(),name="delete_script"),
|
|
|
|
path("audit_tutorial",TemplateView.as_view(template_name = "audit/audit_tutorial.html"),name="audit_tutorial"),
|
|
|
|
path("scriptAuditDemo", TemplateView.as_view(template_name = "audit/audit_demo.html"), name="scriptAuditDemo"),
|
2024-04-30 04:59:37 +00:00
|
|
|
path("downloadScriptFromBlockchain",views.DownloadScriptFromBlockchain.as_view()),
|
2024-04-27 09:33:09 +00:00
|
|
|
|
|
|
|
]
|
2024-07-02 08:24:31 +00:00
|
|
|
# path('view/',login_required(ViewSpaceIndex.as_view(..)),
|