I'm currently implementing Django-fiber on a project of ours. However I find the documentation very lacking. I'm trying to use custom content-templates for different chunks of content on the site.
I've added the
FIBER_CONTENT_TEMPLATE_CHOICES = (
('', 'Default template'),
('three-columns.html', 'Special template'),
)
However I cant seem to use the three-columns.html
template, which I have placed in the template dir of django-fiber. The custom templates for pages works perfectly.
I would love some feedback from someone who's been working with fiber.