chore: add itim module skeleton

!21 #61
This commit is contained in:
2024-06-14 05:40:10 +09:30
parent e8cb685da1
commit dfba01aed9
5 changed files with 19 additions and 0 deletions

View File

@ -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
View File

6
app/itim/apps.py Normal file
View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class ItimConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'itim'

View File

12
app/itim/urls.py Normal file
View 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"),
]