7 lines
203 B
Python
7 lines
203 B
Python
from django.urls import path
|
|
from django.contrib.auth.decorators import login_required
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('score/edit/<int:sc_id>', views.score_edit, name='score_edit'),
|
|
]
|