picture-display/src/pictures/views.py

11 lines
256 B
Python

from django.shortcuts import render
from django.views import generic
from pictures.models import Message
class MessageListView(generic.ListView):
model = Message
template_name = "pictures/messages-list.html"
context_object_name = "messages"