Revision history [back]
I figure it out. Answer:
I personally use the ASKBOT_EXTRA_SKINS_DIR
and STATICFILES_DIRS
to add additional templates, including the OpenStack template. So with that said, the solution is:
vi ${ASKBOT_EXTRA_SKINS_DIR}/openstack/templates/widgets/footer.html
(Make your modifications).cd ${ASKBOT_HOME}
python manage.py collectstatic --settings live
(Note: I inherit fromsettings.py
intolive.py
).
And that works. Note that every time you make an update (i.e. perform step-1), you'll have to follow it up by doing steps 2 and 3, as well.