How to load content dynamically from database into Bootstrap modal using Django

I am working on a testing app that lists out users from the database in a HTML table, what I want to achieve is this, when you click on any icon for a particular record or row the full detail of that record is displayed in a Bootstrap Modal. My problem is how do I implement my views, urls, and also my Templates? Do I need Javascript help here? Cause in PHP this is done easily without JavaScript. Plesae I will prefer code samples as a correction to my issue thanks.

def users(request): 
get_users = User.objects.all() return render(request, 'classwork_app/users.html', {'users':get_users})

#django #bootstrap

15.35 GEEK