arrowcounter/score/urls.py
Claudio Maggioni (maggicl) c7f7ad4f1b More work on score app
2019-08-07 14:47:24 +02:00

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'),
]