6 lines
193 B
Python
6 lines
193 B
Python
from django.shortcuts import render
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
@login_required
|
|
def score_edit(request, sc_id):
|
|
return render(request, 'score/edit.html', {})
|