[Answer]-Advice on how to display a row of data on which calculation needed to be performed

1👍

In order to trigger the session, it must be like this:

request.session['travellers'] = lroute.traveller.all().count()
//other session here

To get and use the data, it must be:

travellers = request.session.get('travellers')

Leave a comment