Example 2 - View.py

PHOTO EMBED

Thu Sep 11 2025 21:53:59 GMT+0000 (Coordinated Universal Time)

Saved by @Masiaga01

# views.py
from django.shortcuts import render
from .models import Patient

def patient_list(request):
    patients = Patient.objects.all()
    return render(request, "patients.html", {"patients": patients})
content_copyCOPY