0
votes
Class views in Django
If you want to share common functionality between pages I suggest you look at custom tags. They're quite …
6
votes
What Hosting Service is best for Django applications?
I use Linode who provide you with complete root access to your own machine, for a really quite small fee. Sure it's a bit more work than someone l …
7
votes
Django Sessions
The filesystem backend is only worth looking at if you're not going to use a database for any other part of your system. If you are using a database then the filesystem backend has nothing to recom …
0
votes
Can I use HTTP Basic Authentication with Django?
Because django can be run in several ways, and only modpython gives you close integration with Apache, I don't believe there is a way for django to log you in basic on Apache's basic auth. Authenti …
1
vote
How do you develop against OpenID locally
You shouldn't be having trouble developing against your own machine. What error are you getting?
An OpenID provider will ask you to give your site (in this case …
1
vote
How do I use django mptt?
I don't quite follow your question. A tree stores one type of object, in your case Company. To link Financials to Company just add a foreign key from Financials to Company.
If this doesn't …
0
votes
Django: How to redirect to an external URL?
How are you running the mod_wsgi server? I expect that because you're running the local server directly through Django no url rewriting happens. On the remote server the url gets rewritten to remov …
1
vote
Django 1.0/1.1 rewrite of self join
I'm pretty sure that query cannot be created with the Django ORM. The new Django aggregation code is pretty flexible, but I don't think it can do exactly what you want.
Are you sure that qu …
1
vote
Should I use GeoDjango for mapping a floor plan?
How often will the floor plan change? From your description a simple image with a imagemap would suffice.
…
1
vote
Deploying Google Analytics With Django
I mostly agree with Ned, although I have a single setting called IS_LIVE_SITE which toggles analytics code, adverts and a few other things. This way I can keep all the keys in subversion (as it is …
0
votes
Partially null dates in MySQL/Django
When MySQL is running in ALLOW_INVALID_DATES mode it doesn't perform any v …
1
vote
How do I process a complex graphical UI element in a django form?
Your question is very vague so I suggest you read the Django documentation on writing a custom field and …
0
votes
Setting the selected value on a Django forms.ChoiceField
To be sure I need to see how you're rendering the form. The initial value is only used in a unbound form, if it's bound and a value for that field is not included nothing will be selected.
…
