Font Awesome packaged in a django app to speed up new applications and deployment.
Install using pip:
pip install django-font-awesome
Add to font_awesome to your INSTALLED_APPS in settings.py:
INSTALLED_APPS = (
...
'font_awesome',
...
)
Run collectstatic to bring in the Font Awesome static files.
In the template where you require Font Awesome, load Django's static template tag library:
{% load static %}
Then use the static template tag to load the Font Awesome CSS:
<link rel='stylesheet' type='text/css' href='{% static 'css/font-awesome.css' %}' />