14
votes
10answers
1k views
Book and tutorial recommedations for Django 1.0
Please share your book or tutorial recommendations for the latest release (1.0) of Django.
…
2
votes
2answers
1k views
How to port from Drupal to Django?
What would be the best way to port an existing Drupal site to a Django application?
I have around 500 pages (mostly books module) and around 50 blog posts. I'm not using any 3rd party modules.
I wo …
0
votes
2answers
115 views
Country/State/City dropdown menus inside the Django admin inline
I have a city foreign key in by BusinessBranch model. My City model also has a state and country foreign keys for State and County models. I'm having hard time displaying State and Country dropdown …
0
votes
1answer
27 views
How can I use conditional sorting at Django queries?
I'm implementing a basic forum app. I would like to sort the questions by their last reply time.
I have the following line:
questions = Question.objects.filter(deleted=False).or …
2
votes
1answer
37 views
How can I order by GenericForeignKey?
My model is:
class Subscription(models.Model):
user = models.ForeignKey(User, related_name='subscription', editable=False)
following_content_type = models.ForeignKey(ContentType, ed …
0
votes
What Hosting Service is best for Django applications?
Another vote for webfaction. They seem to be heavily focused on Python and it was their starting point. Admin interface seems to be simple and easy to use.
…
