mirror of
https://github.com/TheSL18/upptime.git
synced 2024-12-28 10:11:45 -06:00
10 lines
392 B
Python
10 lines
392 B
Python
from django.urls import path
|
|
from . import vista
|
|
|
|
urlpatterns = [
|
|
path('', vista.cb_america, name='cb_america'),
|
|
path('cb_america_web/', vista.cb_america, name='cb_america'),
|
|
path("products-services/", vista.products_services, name="products_services"),
|
|
path("about-us/", vista.about_us, name="about_us"),
|
|
path("global-lists/", vista.global_lists, name="global_lists"),
|
|
] |