You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
367 B
12 lines
367 B
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
from django.template import loader
|
|
from .models import Match
|
|
|
|
def index(request):
|
|
matches = Match.objects.order_by('-court')
|
|
template = loader.get_template('scores/index.html')
|
|
context = {
|
|
'matches': matches,
|
|
}
|
|
return HttpResponse(template.render(context, request))
|
|
|