I'm writing an app, that uses django-floppyforms
. Also, my app provides the default twitter bootstrap
skin, so i have customized floppyforms templates im my app to make them bootstrap alike. I put floppyforms/{layouts, rows}/bootstrap
into my app's templates directory. But it does not work: django won't use them. So, i don't want to enforce end user to put customized templates into his project, in fact, i want to point django to take my local floppyforms
templates when it renders in-app content. I just want to make my app standalone without any unhandy depencies.
UPDATE
Now i'm having the similar troubles with django-admintools-bootstrap and Django 1.5.1
. It was added before admin_tools
in INSTALLED_APPS
, but there's no effect. Also it won't collect static for django-admintools-bootstrap
. In other similar projects using this two packages and Django 1.4, all works fine. Also, i've checked the release notes for Django 1.5 for template lookup order changes and found nothing about it.