or a while I have been thinking of having my Django sites include CSS styling from a database; for instance having different themes that can be switched on and off at will. It took me a while - with some help from Django users & docs - to figure out how to do it.
My eventual solution uses a template file containing variable names where colours should go; the variables get their values generated at run-time from the database.
Designing and populating a database to manage the variables is pretty straight-forward; generating the CSS file is not a common feature it seems hence this posting.
Suppose we have a template containing CSS which we want to alter dynamically; something like this
#afc-portal-globalnav {
background-color: {{ globalnav_background_normal }};
: 1px solid {{ globalnav_border_colour }};
border
}
#afc-portal-globalnav ul {
color: {{ globalnav_colour_normal }};
}
Here we have a few variable names (globalnav_background_normal, globalnav_border_colour, etc) we want to replace with colours picked from our database.
We can create a Functional View which sets-up the page, queries the database, generates from the template and returns the page
In the first part, we make sure the response will be of the appropriate type. We need to do more here to make sure the page will be cached appropriately - we do not want to be generating this file for every query.
def themecss(request):
# Create the HttpResponse object with the appropriate header.
= HttpResponse(content_type='text/css') response
Now we can query the database and assemble the key, value pairs for the variables with their colours.
= {}
context
for item in Tag.objects.all():
= item.colour context[item.tag]
And finally we load the template with our variables and return the page.
= loader.get_template('afc_skin_theme.css')
t = Context(context)response.write(t.render(c))
c return response
With this in place and our database populated with an appropriate structure, we can define an url to call the view and include this in our regular pages. Without any caching controls, the styling can be changed more or less immediately.
Dead easy when you know how, eh?