eqy.fr/photos/views.py

10 lines
269 B
Python
Raw Normal View History

2023-12-20 08:32:47 +00:00
from django.shortcuts import render
2023-12-20 16:09:36 +00:00
from django.utils.translation import gettext as _
2023-12-20 08:32:47 +00:00
from photos.models import Media
def index(request):
2023-12-20 16:09:36 +00:00
title = _("Title")
return render(request, "photos/index.html", context={"title": title, "medias": Media.objects.all()})