python - Second stylesheet in child template / Overriding style sheets -
i have website i'm putting python , django. have template html page, speakers.html , extends base.html . base.html has stylesheet base.css . speakers.html displaying base.css styling should be, problem want speakers.html have additional styling stylesheet, speakers.css . i've been trying figure out speaker.css doesn't seem applied, infact i've noticed in cmd output file speaker.css isn't being loaded @ all. i tried putting in block, code see below.. had repeat {% load static %} rid of error expecting endblock doesn't seem have made difference. base.html <!doctype html> <html lang="en"> <head> <title>base.html</title> {% load static %} <link rel="stylesheet" type="text/css" href="{% static "css/base.css" %}" /> {% block additionalcss %}{% endblock %} </head> <body> ...ect speakers.html <!-- extending works --> {% ex...