[Answered ]-Loading css and javascript files in more then one django templates without having to to re load css and js

2👍

You have to include js and css files on dealDetails.html too.

To avoid repeating the same code, you can create one base.html template where you include css and js files, and then extend that base template in both your templates.

Take a look at documentation.

Leave a comment