Templates
General
This package comes with a lot of templates that are used right out of the box. Any and all of these templates can be overridden to customize the look and feel of the site. Rather than listing out every single file and every single block within those files that can overridden, it is preferable that you just reference the files yourself to see what can be overridden. The files can be found on GitHub.
For a sample change, see the below instructions.
Example Change
Use the following steps as an example of a change that can be made to change parts of the site.
Create
adminlte2/base.html
in one of your django projects template foldersExtend the packages default base.html by adding the following line to the file created above.
{% extends "adminlte2/base.html" %}
Override the skin class to set the color theme of the site by adding the following line to the file created above. Valid values can be found here: https://adminlte.io/themes/AdminLTE/documentation/
{% block skin_class %}skin-blue{% endblock skin_class %}
Optionally override any other template blocks that you would like to either remove or change the implementation of