Re: how to run a function from a link withing popup modal bootstrap with django

2019-10-14 Thread Rajkumar Mittal
path("events//", views.getEvents, name = "getEvents"), this is the correct way On Monday, 14 October 2019 14:19:58 UTC+5:30, leb dev wrote: > > I have a django project that includes a popup modal where the modal has > tabs as links one of these tabs once the user clicked it must perform a >

Re: how to run a function from a link withing popup modal bootstrap with django

2019-10-14 Thread Rajkumar Mittal
Use views.getEvents in urls.py On Mon, 14 Oct, 2019, 2:20 PM leb dev, wrote: > I have a django project that includes a popup modal where the modal has > tabs as links one of these tabs once the user clicked it must perform a > function and retrieve data from the database. > > The problem is

how to run a function from a link withing popup modal bootstrap with django

2019-10-14 Thread leb dev
I have a django project that includes a popup modal where the modal has tabs as links one of these tabs once the user clicked it must perform a function and retrieve data from the database. The problem is that once the user clicked the tab nothing happen as is the function isn't initialize.