9 lines
192 B
Python
9 lines
192 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})
|