Skip to content Skip to sidebar Skip to footer

Display Data From Db In Django

I am trying retrive data from db and display in view but output is empty. Here is my function from django.shortcuts import render from django.http import HttpResponse from pages.m

Solution 1:

there is a mistake in passing context.. you are using key row in contex.But you are calling rows in for loop.change key row to rows . and keep for loop as it is.

here change in passing context dictinary key

return render(request, 'contact.html',  {'title':'Contact Page','rows':dbdata})

if this is working then let me know....

Solution 2:

replace follwoing code in view.py [you just made a mistake at row's name ]

make sure your code in proper alignment

from django.shortcuts import render
from django.http import HttpResponse
from pages.models import Contact
# from django.views import View# Create your views here.defhome(request):
  return render(request, 'index.html', {'title':'Home Page'})
defcontact(request):

  if(request.method == 'POST'):
    data = Contact(
      name = request.POST['name'],
      email = request.POST['email'], 
      address = request.POST['address'],
      city = request.POST['city'],
      zipcode = request.POST['zipcode'],  

    )
    data.save()

    dbdata = Contact.objects.all()
    return render(request, 'contact.html',  {'title':'Contact Page','rows':dbdata})

and add following code in HTML

 <tbody>
        {% for row in rows %}
             <tr>
                <th>{{row.name}}</th> 
                <th>{{row.emai}}</th>
                <th>{{row.address}}</th>
                <th>{{row.city}}</th>
                <th>{{row.zipcode}}</th>
            </tr>
        {%endfor%}
</tbody>

Post a Comment for "Display Data From Db In Django"