1
vote
2answers
420 views
Style - When to serialize a Django model Instance: signals vs model’s save method
I plan to serialize a Django model to XML when it's saved or updated. (The XML's going to be imported into a flash movie). Is it better to listen for a post_save() or pre_save() signal a …
1
vote
2answers
308 views
How to configure server for small hosting company for django-powered flash sites?
I'm looking at setting up a small company that hosts flash-based websites for artist portfolios. The customer control panel would be django-powered, and would provide the interface for uploading t …
2
votes
3answers
1k views
Problems raising a ValidationError on a Django Form
I'm trying to validate that a submitted URL doesn't already exist in the database.
The relevant parts of the Form class look like this:
from django.contrib.sites.models impo …
1
vote
2answers
515 views
Django MTMField: limit_choices_to = other_ForeignKeyField_on_same_model?
I've got a couple django models that look like this:
from django.contrib.sites.models import Site
class Photo(models.Model):
title = models.CharField(max_length=100)
site = …
0
votes
3answers
432 views
Django, jQuery, XMLHttpResponse error
I'm trying to learn some basic ajax using Django. My simple project is an app that randomly selects a Prize from the available prizes in the database, decrements its quantity, and ret …
4
votes
2answers
189 views
django ‘url’ template tag error
My URLconf contains this pattern:
url(r'^accounts/logout/$','django.contrib.auth.views.logout', name="logout"),
And I've trying to reverse that in a template with …
9
votes
3
votes
What Hosting Service is best for Django applications?
http://djangofriendly.com is a site that attempts to answer this question. They have a whole list of sites with some form of Django support, …
0
votes
Django UserProfile… without a password
Another upvote for insin's answer: handle this through a UserProfile. …
0
votes
Problems raising a ValidationError on a Django Form
django channel in IRC saved me here. The problem was that the URLField.clean() does two things I wasn't expecting:
If no URL scheme is present (eg, http://) the method prepends 'http …
0
votes
Django, jQuery, XMLHttpResponse error
Good grief. I had just left out return false in the function that made the ajax call. Way to go n00b. :0.
…
