📌  相关文章
📜  在 django 中显示数据库中的数据 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:52.207000             🧑  作者: Mango

代码示例1
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 %}