[Answer]-Twitter Bootstrap not displaying in Template

1👍

It seems like you got the settings right, but you also need to load the compressed files in the html file.

{% load compressed %}

<head>
{% compressed_js 'bootstrap' %}
{% compressed_css 'bootstrap' %}
</head>

Read more on usage on the documentation (Readme) of django-bootstrap here

Leave a comment