Django is an open source Web 2.0 application framework, written in Python. Its primary goal is to ease the creation of complex database-driven websites.
39
votes
3answers
42k views
Sending images using Http Post
I want to send an image from the android client to the Django server using Http Post. The image is chosen from the gallery. At present, I am using list value name Pairs to send the necessary data to ...
101
votes
14answers
21k views
Dynamically adding a form to a Django formset with Ajax
I'd like to be able to automatically add new forms to a Django formset with an ajax function. I.e., the user clicks an "add" button and some javascript will add a new form (which is part of the ...
298
votes
23answers
45k views
Does Django Scale?
I'm building a web application with Django. The reasons I chose Django were:
I wanted to work with free/open-source tools
I like Python and feel it's a "long term" language, whereas regarding Ruby I ...
126
votes
8answers
38k views
How to combine 2 or more querysets in a Django view?
I am trying to build the search for a Django site I am building, and in the search I am searching in 3 different models. And to get pagination on the search result list I would like to use a generic ...
103
votes
9answers
43k views
Extending the User model with custom fields in Django
What's the best way to extend the User model (bundled with Django's authentication app) with custom fields? I would also possibly like to use the email as the username (for authentication purposes).
...
65
votes
8answers
25k views
Having Django serve downloadable files
I want users on the site to be able to download files whose paths are obscured so they cannot be directly downloaded.
For instance, I'd like the URL to be something like this, ...
107
votes
14answers
48k views
In a django form, How to make a field readonly (or disabled) so that it cannot be edited?
In a django form, how do I make a field read-only (or disabled)?
When the form is being used to create a new entry, all fields should be enabled - but when the record is in update mode some fields ...
159
votes
5answers
155k views
Converting string into datetime
Short and simple. I've got a huge list of date-times like this as strings:
Jun 1 2005 1:33PM
Aug 28 1999 12:00AM
I'm going to be shoving these back into proper datetime fields in a database so I ...
47
votes
5answers
27k views
Custom Filter in Django Admin on Django 1.3 or below
How can I add a custom filter to django admin (the filters that appear on the right side of a model dashboard)? I know its easy to include a filter based on a field of that model, but what about a ...
37
votes
8answers
22k views
Django CSRF check failing with an Ajax POST request
I could use some help complying with Django's csrf protection mechanism via my AJAX post. I've followed the directions here:
http://docs.djangoproject.com/en/dev/ref/contrib/csrf/
I've copied the ...
35
votes
8answers
8k views
How do I access the child classes of an object in django without knowing the name of the child class?
In Django, when you have a parent class and multiple child classes that inherit from it you would normally access a child through parentclass.childclass1_set or parentclass.childclass2_set, but what ...
58
votes
7answers
14k views
Django Passing Custom Form Parameters to Formset
I have a Django Form that looks like this:
class ServiceForm(forms.Form):
option = forms.ModelChoiceField(queryset=ServiceOption.objects.none())
rate = ...
28
votes
8answers
45k views
How to add to the pythonpath in windows 7?
I have a directory which hosts all my django app.
*"C:\My_Projects".*
I want to add this directory to my pythonpath so I can call the apps directly.
I have *right clicked My Computer > Properties > ...
41
votes
3answers
9k views
Django dynamic model fields
I'm working on a multi-tenanted application in which some users can define their own data fields (via the admin) to collect additional data in forms and report on the data. The latter bit makes ...
47
votes
12answers
31k views
Numeric for loop in Django templates
How do I write a numeric for loop in a Django template? I mean something like
for i = 1 to n
95
votes
12answers
51k views
Using Django time/date widgets in custom form
How can I use the nifty JavaScript date and time widgets that the default admin uses with my custom view?
I have looked through http://www.djangoproject.com/documentation/forms/, and it brefly ...
114
votes
16answers
24k views
Django - Set Up A Scheduled Job?
I've been working on a web app using Django, and I'm curious if there is a way to schedule a job to run periodically.
Basically I just want to run through the database and make some ...
74
votes
6answers
34k views
How do I filter ForeignKey choices in a Django ModelForm?
Say I have the following in my models.py:
class Company(models.Model):
name = ...
class Rate(models.Model):
company = models.ForeignKey(Company)
name = ...
class Client(models.Model):
...
49
votes
1answer
10k views
Django FileField with upload_to determined at runtime
I'm trying to set up my uploads so that if user joe uploads a file it goes to MEDIA_ROOT/joe as opposed to having everyone's files go to MEDIA_ROOT. The problem is I don't know how to define this in ...
50
votes
3answers
36k views
How to query as GROUP BY in django?
I query a model,
Members.objects.all()
and it returns say
Eric, Salesman, X-Shop
Freddie, Manager, X2-Shop
Teddy, Salesman, X2-Shop
Sean, Manager, X2-Shop
What i want is, to know the ...
70
votes
9answers
33k views
Programmatically saving image to Django ImageField
Ok, I've tried about near everything and I cannot get this to work.
I have a Django model with an ImageField on it
I have code that downloads an image via HTTP (tested and works)
The image is saved ...
50
votes
4answers
41k views
Django equivalent for count and group by
I have a model that looks like this:
class Category(models.Model):
name = models.CharField(max_length=60)
class Item(models.Model):
name = models.CharField(max_length=60)
category = ...
38
votes
8answers
14k views
Django: When saving, how can you check if a field has changed?
In my model I have :
class Alias(MyBaseModel):
remote_image = models.URLField(max_length=500, null=True, help_text="A URL that is downloaded and cached for the image. Only
used when the alias is ...
34
votes
11answers
7k views
Can django's auth_user.username be varchar(75)? How could that be done?
Is there anything wrong with running alter table on auth_user to make username be varchar(75) so it can fit an email? What does that break if anything?
If you were to change auth_user.username to be ...
26
votes
2answers
10k views
How to stream an HttpResponse with Django
I'm trying to get the 'hello world' of streaming responses working for Django (1.2). I figured out how to use a generator and the yield function. But the response still not streaming. I suspect ...
34
votes
7answers
12k views
How do I access the request object or any other variable in a form's clean() method?
I am trying to request.user for a form's clean method, but how can I access the request object? Can I modify the clean method to allow variables input?
17
votes
3answers
3k views
How do I deal with this race condition in django?
This code is supposed to get or create an object and update it if necessary. The code is in production use on a website.
In some cases - when the database is busy - it will throw the exception ...
29
votes
4answers
5k views
Where to put Django startup code?
I'd like to have these lines of code executed on server startup (both development and production):
from django.core import management
management.call_command('syncdb', interactive=False)
Putting it ...
175
votes
6answers
14k views
What's the best solution for OpenID with Django?
There are at least half a dozen Django apps that provide OpenID authentication for Django:
django-openid
django-openid-auth
another django-openid-auth, which seems to be dead
django-authopenid
...
35
votes
4answers
10k views
In Django, how does one filter a QuerySet with dynamic field lookups?
Given a class:
from django.db import models
class Person(models.Model):
name = models.CharField(max_length=20)
Is it possible, and if so how, to have a QuerySet that filters based on dynamic ...
29
votes
9answers
10k views
Django: How can I protect against concurrent modification of database entries
If there a way to protect against concurrent modifications of the same data base entry by two or more users?
It would be acceptable to show an error message to the user performing the second ...
53
votes
12answers
55k views
How do I perform HTML decoding/encoding using Python/Django?
I have a string that is html encoded:
<img class="size-medium wp-image-113"
style="margin-left: 15px;" title="su1"
...
5
votes
2answers
3k views
Confusion in Django admin, static and media files
I'm relatively new to Django (1.4) and I'm having a hard time understanding the philosophy behind static, media, and admin files. The structure of the project is different from one tutorial to ...
89
votes
5answers
31k views
Need a minimal Django file upload example
As a newbie to Django, I am having difficulty to make an upload app in Django 1.3. I could not find any up-to-date example/snippet. So I appreciate if you could post here or refer me to a minimal but ...
41
votes
15answers
27k views
Django - Iterate over model instance field names and values in template
I'm trying to create a basic template to display the selected instance's field values, along with their names. Think of it as just a standard output of the values of that instance in table format, ...
16
votes
6answers
7k views
Using only the DB part of Django
Does somebody know how "modular" is Django? Can I use just the ORM part, to get classes that map to DB tables and know how to read/write from these tables?
If not, what would you recommend as "the ...
26
votes
4answers
13k views
How do I run another script in Python without waiting for it to finish?
I am creating a little dashboard for a user that will allow him to run specific jobs. I am using Django so I want him to be able to click a link to start the job and then return the page back to him ...
22
votes
1answer
4k views
Load a Django template tag library for all views by default
I have a small typography related templatetag library that I use on almost every page. Right now I need to load it for each template using
{% load nbsp %}
Is there a way to load it "globally" for ...
59
votes
9answers
28k views
DatabaseError: current transaction is aborted, commands ignored until end of transaction block
I got a lot of "DatabaseError: current transaction is aborted, commands ignored until end of transaction block" errors after changed from python-psycopg to python-psycopg2 as Django project's database ...
12
votes
9answers
13k views
Facebook Graph API and Django
I am curious if there is any article/ library / anything useful that is built for the newly announced Facebook Graph API. I am planning to use it for a Python/Django project.
4
votes
4answers
3k views
Issue with ManyToMany Relationships not updating inmediatly after save
I'm having issues with ManytoMany Relationships that are not updating
in a model when I save it (via the admin) and try to use the new value within a
function attached to the post_save signal or ...
134
votes
12answers
34k views
How to debug in Django, the good way?
So, I started learning to code in Python and later Django. The first times it was hard looking at tracebacks and actually figure out what I did wrong and where the syntax error was. Some time has ...
100
votes
9answers
29k views
Can I access constants in settings.py from templates in Django?
I have some stuff in settings.py that I'd like to be able to access from a template, but I can't figure out how to do it. I already tried
{{CONSTANT_NAME}}
but that doesn't seem to work. Is this ...
72
votes
5answers
69k views
Capturing url parameters in request.GET
I am currently defining regular expressions in order to capture parameters in a url, as described in the tutorial. How do I access parameters from the url as part the HttpRequest object? My ...
29
votes
5answers
11k views
How do you change the default widget for all Django date fields in a ModelForm?
Given a set of typical models:
# Application A
from django.db import models
class TypicalModelA(models.Model):
the_date = models.DateField()
# Application B
from django.db import models
class ...
59
votes
1answer
39k views
Django set default form values
I have a Model as follows
class TankJournal(models.Model):
user = models.ForeignKey(User)
tank = models.ForeignKey(TankProfile)
ts = models.IntegerField(max_length=15)
title = ...
56
votes
9answers
27k views
Django: Redirect to previous page after login
I'm trying to build a simple website with login functionality very similar to the one here on SO.
The user should be able to browse the site as an anonymous user and there will be a login link on ...
32
votes
5answers
10k views
How do you reload a Django model module using the interactive interpreter via “manage.py shell”?
I know how to reload a regular Python module within a regular Python interpreter session. This question documents how to do that pretty well:
How do I unload (reload) a Python module?
For some ...
28
votes
6answers
17k views
Generating file to download with Django
Is it possible to make a zip archive and offer it to download, but still not save a file to the hard drive?
19
votes
6answers
5k views
Use only some parts of Django?
I like Django, but for a particular application I would like to use only parts of it, but I'm not familiar enough with how Django works on the inside, so maybe someone can point me into the right ...

