In Django, it is possible to use different Css files in one HTML document ?
I would like to use one css for base.html and another one for page1.html while expanding base.html to page1.html...
For example, base.html :
{% load static %}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="{% static "css/base.css" %}">
</head>
{% block content %}{% endblock%}
</body>
</html>
and page1.html :
{% extends "base.html" %}
{% load static %}
<link rel="stylesheet" href="{% static "css/page1.css" %}">
{% block content %}
code...
{% endblock %}
I don't want to merge the Css files, do I have an another solution ?