| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/dev/code/erp/horilla_automations/ |
Upload File : |
"""
horilla_automations/urls.py
"""
from django.urls import path
from horilla_automations.views import cbvs, views
urlpatterns = [
path(
"configuration/mail-automations",
cbvs.AutomationSectionView.as_view(),
name="mail-automations",
),
path(
"mail-automations-nav",
cbvs.AutomationNavView.as_view(),
name="mail-automations-nav",
),
path(
"create-automation",
cbvs.AutomationFormView.as_view(),
name="create-automation",
),
path(
"update-automation/<int:pk>/",
cbvs.AutomationFormView.as_view(),
name="update-automation",
),
path(
"mail-automations-list-view",
cbvs.AutomationListView.as_view(),
name="mail-automations-list-view",
),
path(
"get-to-mail-field",
views.get_to_field,
name="get-to-mail-field",
),
path(
"automation-detailed-view/<int:pk>/",
cbvs.AutomationDetailedView.as_view(),
name="automation-detailed-view",
),
path(
"delete-automation/<int:pk>/",
views.delete_automation,
name="delete-automation",
),
]