Files
dnd-db-site/links/views.py
T
2022-07-12 16:56:01 +03:00

8 lines
191 B
Python

from django.shortcuts import render
from .models import Link
def index(request):
links = Link.objects.order_by('order')
return render(request, 'links/index.html', {'links': links})