mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
13 lines
439 B
Python
13 lines
439 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='targetIndex'),
|
|
path('add/', views.add_target_form, name='add_target_form'),
|
|
path('update/<int:id>', views.update_target_form, name='update_target_form'),
|
|
path('list/', views.list_target, name='list_target'),
|
|
path('delete/<int:id>', views.delete_domain, name='delete_domain_url'),
|
|
]
|