@ -70,6 +70,7 @@ if settings.DEBUG:
|
||||
|
||||
path("__debug__/", include("debug_toolbar.urls"), name='_debug'),
|
||||
# Apps Under Development
|
||||
path("itim/", include("itim.urls")),
|
||||
path("information/", include("information.urls")),
|
||||
path("project_management/", include("project_management.urls")),
|
||||
]
|
||||
|
0
app/itim/__init__.py
Normal file
0
app/itim/__init__.py
Normal file
6
app/itim/apps.py
Normal file
6
app/itim/apps.py
Normal file
@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ItimConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'itim'
|
0
app/itim/migrations/__init__.py
Normal file
0
app/itim/migrations/__init__.py
Normal file
12
app/itim/urls.py
Normal file
12
app/itim/urls.py
Normal file
@ -0,0 +1,12 @@
|
||||
from django.urls import path
|
||||
|
||||
from itam import views
|
||||
from itam.views import device, device_type, software, software_category, software_version, operating_system, operating_system_version
|
||||
|
||||
app_name = "ITIM"
|
||||
urlpatterns = [
|
||||
|
||||
path("clusters", device.IndexView.as_view(), name="Clusters"),
|
||||
path("services", device.IndexView.as_view(), name="Services"),
|
||||
|
||||
]
|
Reference in New Issue
Block a user