mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-20 16:57:43 +02:00
11 lines
393 B
Python
11 lines
393 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='notification_index'),
|
|
path('change/<int:id>', views.change_notif_status, name='change_notif_status'),
|
|
path('add/', views.add_notification_hook, name='add_notification_hook'),
|
|
path('delete/<int:id>', views.delete_hook, name='delete_hook'),
|
|
]
|