mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-09 23:51:20 +00: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"),
|
|
]
|