mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-04 12:20:24 -06:00
9 lines
194 B
Python
9 lines
194 B
Python
from django.urls import path
|
|
|
|
from .views import user_list, user_edit
|
|
|
|
urlpatterns = [
|
|
path('', user_list, name="user_list"),
|
|
path('<str:user_pk>/edit/', user_edit, name="user_edit"),
|
|
]
|