[Answered ]-Django-tables2: how to pass other object instance to the template besides the one we use for the table

2👍

the answer is:

 return render(request, 'singleplayer.html', {'table': table, 'today':taday})
👤amb1s1

0👍

You need to have all of the variable that you want to use in the view inside the dictionary.

Leave a comment