Use leaflet for handling of locations in django admin

This commit is contained in:
Keannu Christian Bernasol 2023-07-10 17:06:43 +08:00
parent 1fc262a530
commit 166d586fc2
15 changed files with 95 additions and 4 deletions

View file

@ -9,5 +9,6 @@ urlpatterns = [
path('semesters/', include('semesters.urls')),
path('subjects/', include('subjects.urls')),
path('study_groups/', include('study_groups.urls')),
path('messages/', include('studygroup_messages.urls'))
path('messages/', include('studygroup_messages.urls')),
path('landmarks/', include('landmarks.urls')),
]