@ -113,6 +113,7 @@ INSTALLED_APPS = [
|
||||
'core.apps.CoreConfig',
|
||||
'access.apps.AccessConfig',
|
||||
'itam.apps.ItamConfig',
|
||||
'itim.apps.ItimConfig',
|
||||
'settings.apps.SettingsConfig',
|
||||
'drf_spectacular',
|
||||
'drf_spectacular_sidecar',
|
||||
|
@ -43,6 +43,7 @@ urlpatterns = [
|
||||
|
||||
path("organization/", include("access.urls")),
|
||||
path("itam/", include("itam.urls")),
|
||||
path("itim/", include("itim.urls")),
|
||||
path("config_management/", include("config_management.urls")),
|
||||
|
||||
path("history/<str:model_name>/<int:model_pk>", history.View.as_view(), name='_history'),
|
||||
@ -73,7 +74,6 @@ 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")),
|
||||
]
|
||||
|
1
app/templates/icons/itim.svg
Normal file
1
app/templates/icons/itim.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.6V9.4C2 10.3 2.5 11 3.2 11H20.9C21.5 11 22.1 10.3 22.1 9.4V4.6C22 3.7 21.5 3 20.8 3H3.2C2.5 3 2 3.7 2 4.6M10 8V6H9V8H10M5 8H7V6H5V8M20 9H4V5H20V9M2 14.6V19.4C2 20.3 2.5 21 3.2 21H20.9C21.5 21 22.1 20.3 22.1 19.4V14.6C22.1 13.7 21.6 13 20.9 13H3.2C2.5 13 2 13.7 2 14.6M10 18V16H9V18H10M5 18H7V16H5V18M20 19H4V15H20V19Z" /></svg>
|
After Width: | Height: | Size: 401 B |
@ -30,6 +30,8 @@ span.navigation_icon {
|
||||
{% include 'icons/ansible.svg' %}
|
||||
{% elif group.name == 'ITAM' %}
|
||||
{% include 'icons/itam.svg' %}
|
||||
{% elif group.name == 'ITIM' %}
|
||||
{% include 'icons/itim.svg' %}
|
||||
{% elif group.name == 'Settings' %}
|
||||
{% include 'icons/settings.svg' %}
|
||||
{% endif %}
|
||||
|
Reference in New Issue
Block a user