eqy.fr/photos/views.py

8 lines
180 B
Python

from django.shortcuts import render
from photos.models import Media
def index(request):
return render(request, "photos/index.html", context={"medias": Media.objects.all()})