Answers for "how to fetch data from database and display in html in django"

0

how to fetch data from database and display in html in django

fetch from database
Posted by: Guest on December-31-2020
1

display data from database in django

data = Students.objects.all()
stu = {
    "student_number": data
}
return render_to_response("login/profile.html", stu)

// in html file :
{% for student in student_number %}
    {{ student.f_name}}
    {{ student.l_name }}
    {{ student.student_number }}
    {{ student.dob }}
{% endfor %}
Posted by: Guest on April-25-2020

Code answers related to "how to fetch data from database and display in html in django"

Browse Popular Code Answers by Language