1
vote
Django: serving ADMIN media files
Try changing:
ADMIN_MEDIA_PREFIX = '/static/media/'
This assumes that your MEDIA_ROOT/media/ directory contains the admin media folder (which is what I understood from …
1
vote
How do you do something after you render the view? (Django)
Django's HttpResponse object accepts an iterator in its constructor:
http://docs.django …
5
votes
django “manage.py index” does not execute as a cron job
Your error is probably because you don't have your PYTHONPATH set properly, especially to include the path to the "notification" module. You also need to set the DJANGO_SETTINGS_MODULE path, if it …
3
votes
What is the best way to post to Twitter from a django app?
One way is the following:
First, handle the post_save signal from Django. Note that post_save passes your handler a boolean parameter created to let …
2
votes
Numeric for loop in Django templates
Take a look at these template filters and tags, either of which is easy enough to include in your application.
…
5
votes
Where to put message queue consumer in Django?
The consumer is simply a long running script in the example you cite from the tutorial. It pops a message from the queue, does something, then calls wait and essentially goes to sleep until anothe …
1
vote
How do you Require Login for Media Files in Django
It seems to me that the method you outlined in your code should work. It's really no different than any other protected resource: your views can serve files from disks, records from databases, re …
4
votes
key=operator.attrgetter sort order?
This should work:
sorted(multitags, key=operator.attrgetter('date_added'), reverse=True)
This document on the python wiki is worth reading through at least once to …
0
votes
Get POST data from a complex Django form?
In this line:
self.fields[entry] = forms.DecimalField(max_digits=4, decimal_places=1, label=nice_label)
entry is a model instance. But fields are keyed …
3
votes
Django “login() takes exactly 1 argument (2 given)” error
One possible fix:
from django.contrib import auth
def login(request):
# ....
auth.login(request, user)
# ...
Now your view name doesn't overwrite djan …
6
votes
Is it posible to generate django models from the database?
Yes, take a look at the insepectdb command:
http://docs.djangoproject.com/en/dev …
1
vote
Django and Serving Static Files
Yes, the static files used by Django are pretty much related to images, javascript and css for the admin. All other static content comes from your application. You can keep both sets (yours and t …
0
votes
Django python path with Apache and mod_python
If you're on windows, it's possible it's referencing the registry for the path. Try looking in the registry under:
HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.5 …
1
vote
Is it safe to track trunk in Django?
I think you've done a good job of gathering the right links in the question. The only links I would add are:
…
0
votes
Sorting and indexing into a list in django template?
You should be able to construct the ordered query set in your view and pass it to your template:
def myview(request):
patients = Physician.patients.order_by('bed__room__unit',
…
