Skip to content

Commit

Permalink
feat(itim): Add menu entry
Browse files Browse the repository at this point in the history
!43 #69 #71
  • Loading branch information
jon-nfc committed Aug 13, 2024
1 parent dcdfa8f commit a6e6c94
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
'core.apps.CoreConfig',
'access.apps.AccessConfig',
'itam.apps.ItamConfig',
'itim.apps.ItimConfig',
'settings.apps.SettingsConfig',
'drf_spectacular',
'drf_spectacular_sidecar',
Expand Down
2 changes: 1 addition & 1 deletion app/app/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@

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'),
Expand Down Expand Up @@ -73,7 +74,6 @@

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")),
]
Expand Down
1 change: 1 addition & 0 deletions app/templates/icons/itim.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions app/templates/navigation.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down

0 comments on commit a6e6c94

Please sign in to comment.