django display data from database code example

Example 1: how to fetch data from database and display in html in django

fetch from database

Example 2: 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 %}

Tags:

Html Example