picture-display/src/pictures/views.py

11 lines
256 B
Python
Raw Normal View History

2021-01-24 12:42:24 +01:00
from django.shortcuts import render
2021-01-24 15:43:51 +01:00
from django.views import generic
2021-01-24 12:42:24 +01:00
2021-01-24 15:43:51 +01:00
from pictures.models import Message
class MessageListView(generic.ListView):
model = Message
template_name = "pictures/messages-list.html"
context_object_name = "messages"