0
votes
3answers
132 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
137 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
591 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
1answer
100 views
Is there a way to resize images in Django via imagename.230x150.jpg?
There's a nice plugin for Frog CMS that lets you just type in yourpicture.120x120.jpg or whatever, and it will automatically use the image in that dimension. If it doesn't exist, it creates it and …
0
votes
1answer
92 views
What attributes should belong to a page and what should belong to a model?
Say you have an Events model that contains information about the event. But what about things like slugs, titles and meta description that would go into the html?
It would seem like such t …
1
vote
1answer
97 views
How to get publisher.authors when you have book.publisher and book.author?
Fresh from the Djangobook tutorial using the Books app example, you have Book related to Author through a many-to-many relationship and Book related to Publisher. You can get a set of books associa …
5
votes
3answers
278 views
What are the best Django forum app options out there?
What do you guys recommend in the way of a forum app that can be dropped into my Django project?
I found this page:
…
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 …
2
votes
6answers
257 views
Does order of declaration matter in models.py (Django / Python)?
I have something like this in models.py
class ZipCode(models.Model):
zip = models.CharField(max_length=20)
cities = City.objects.filter(zip=self).distinct()
class City(models.Model …
1
vote
2answers
139 views
Is there anything in the Django / Python world equivalent to SimplePie Plugin for Wordpress?
I know that SimplePie itself is derived from UFP, but the features I'm wondering about are the post-processing features that are available in SimplePie for WordPress plugin:
…
0
votes
2answers
374 views
How to consume XML from RESTful web services using Django / Python?
Should I use PyXML or what's in the standard library?
…
3
votes
2answers
384 views
Is Django model validation handled just through the forms API?
Is this the only way to create custom model validation? To do it using the forms? What if I want to send data to the database through means other than forms?
…
0
votes
1answer
125 views
How do you remove html tags using Universal Feed Parser?
The documentation lists the tags that are allowed/removed by default:
http://www.feedparser.org/docs/html-sani …
0
votes
4answers
128 views
What’s a good way to mix RSS feeds using Python?
SimplePie lets you merge feeds together:
http://simplepie.org/wiki/tutorial/sort_multiple_fe …
