ভিউ থেকে ডাটা রিড করা
from django.shortcuts import render, HttpResponse
# Create your views here.
def index(request):
return render(request, 'index.html')all_messages = Message.objects.all()return render(request, 'index.html', {'messages': all_messages})from django.shortcuts import render, HttpResponse
from models import Message
# Create your views here.
def index(request):
all_messages = Message.objects.all()
return render(request, 'index.html', {'messages': all_messages})Last updated