0
votes
3answers
135 views
How can you have Wordpress-like custom fields using Django flatpages?
One of the features that makes a CMS like WordPress powerful is the ability to add additional fields that may be used in the template. WordPress has what it calls custom fields. Is there a way to d …
1
vote
1answer
60 views
How can you get future-dated posts in Django?
I just want to do a basic site in Django and the flatpages app is super simple, but it doesn't support a couple of things that I need, namely custom fields and future-dating. That is setting a publ …
0
votes
2answers
144 views
How to get page parent when using Django flatpages?
Since Django urls are arbitrary, including those set when you create flatpages. How can you figure out what a page's parent is? That is if I create a page /about/contact/, then when I am on the con …
2
votes
3answers
612 views
Is there anything better than flatpages for Django?
I was wondering if there's anything better than the flatpages app for Django, because flatpages doesn't even support things like status (draft, published) or publish date. Is there anything out the …
2
votes
2answers
98 views
Can you have more than one app handle a 404 in Django?
Apparently, the way Django flatpages works is that it handles the 404 thrown by other apps. I was wondering if I could do another flatpages-type app that gets a crack at the 404 before flatpages do …
