44
votes
5answers
10k views
In django, what is a “slug”?
When I read django code I often see in models what is called a "slug". I am not quite sure what this is but I do know it has something to do with URL:s. How and when is this slug-thing supposed to be ...
38
votes
5answers
15k views
How do I do a not equal in Django queryset filtering?
In django model querysets, I see that there is a __gt and __lt for comparitive values, but is there a __ne/!=/<> (not equals?)
I want to filter out using a not equals:
Example:
Model:
bool a;
...
33
votes
4answers
739 views
How to work around lack of support for foreign keys across databases in Django
I know Django does not support foreign keys across multiple databases:
http://docs.djangoproject.com/en/1.3/topics/db/multi-db/#cross-database-relations
But I'm looking for a workaround.
What ...
33
votes
2answers
3k views
Django - How to rename a model field using South?
I would like to change a name of specific fields in a model:
class Foo(models.Model):
name = models.CharField()
rel = models.ForeignKey(Bar)
should change to:
class Foo(models.Model):
...
26
votes
7answers
14k 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 ...
22
votes
3answers
3k views
Django: Why some fields clashes with other
I want to create an object that contains 2 links to users. For example
class GameClaim(models.Model):
target = models.ForeignKey(User)
claimer = models.ForeignKey(User)
isAccepted = ...
22
votes
3answers
7k views
Django admin - inline inlines (or, three model editing at once)
I've got a set of models that look like this:
class Page(models.Model):
title = models.CharField(max_length=255)
class LinkSection(models.Model):
page = models.ForeignKey(Page)
title = ...
21
votes
5answers
6k views
django syncdb and an updated model
I have recently updated my model, added a BooleanField to it however when I do python manage.py syncdb, it doesn't add the new field to the database for the model. How can I fix this ?
21
votes
5answers
5k views
How to pull a random record using Django's ORM?
I have a model that represents paintings I present on my site. On the main webpage I'd like to show some of them: newest, one that was not visited for most time, most popular one and a random one.
...
21
votes
3answers
10k views
Django filter — How do I go about filtering for empty or NULL names in a queryset
I have first_name, last_name & alias (optional) which I need to search for.
So, I need a query to give me all the names that have an alias set.
Only if I could do:
Name.objects.filter(alias!="")
...
21
votes
6answers
2k views
Django workflow when modifying models frequently?
as I usually don't do the up front design of my models in Django projects I end up modifying the models a lot and thus deleting my test database every time (because "syncdb" won't ever alter the ...
21
votes
8answers
5k views
Django: How can I protect against concurrent modification of data base 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 ...
20
votes
4answers
5k views
Tying in to Django Admin's Model History
The Setup:
I'm working on a Django application which allows users to create an object in the database and then go back and edit it as much as they desire.
Django's admin site keeps a history ...
20
votes
4answers
3k views
Is BigTable slow or am I dumb?
I basically have the classic many to many model. A user, an award, and a "many-to-many" table mapping between users and awards.
Each user has on the order of 400 awards and each award is given to ...
20
votes
4answers
6k 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 ...
19
votes
3answers
1k views
models.py getting huge, what is the best way to break it up?
Directions from my supervisor:
"I want to avoid putting any logic in the models.py. From here on out, let's use that as only classes for accessing the database, and keep all logic in external classes ...
18
votes
6answers
3k 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 ...
18
votes
4answers
1k views
search functionality on multi-language django site
I'm building a multi-language Django site, and I'm using django-transmeta for my model data translations. Now I'm wondering if there is a Django search app that works with multi-language models. I've ...
18
votes
6answers
3k views
Unique fields that allow nulls in Django
I have model Foo which has field bar. The bar field should be unque, but allow nulls in it, meaning I want to allow more than one record if bar field is null, but if it is not null the values must be ...
17
votes
4answers
5k views
Django model fields validation
Where should the validation of model fields go in django?
I could name at least two possible choices: in the overloaded .save() method of the model or in the .to_python() method of the models.Field ...
17
votes
1answer
3k 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 ...
17
votes
7answers
5k views
How do I create a Django model with ForeignKeys which does not cascade deletes to its children?
One of my models which has ForeignKey's is actually a MySQL view on other tables. The problem I'm running into is that when I delete data from these tables, Django, as described in the "deleting ...
17
votes
10answers
7k views
Resize fields in Django Admin
Django tends to fill up horizontal space when adding or editing entries on the admin, but, in some cases, is a real waste of space, when, i.e., editing a date field, 8 characters wide, or a CharField, ...
17
votes
4answers
3k views
Django: How to create a model dynamically just for testing
I have a Django app that requires a settings attribute in the form of:
RELATED_MODELS = ('appname1.modelname1.attribute1',
'appname1.modelname2.attribute2',
...
16
votes
3answers
924 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 ...
16
votes
7answers
7k views
Django BooleanField as radio buttons?
Is there a widget in Django 1.0.2 to render a models.BooleanField as two radio buttons instead of a checkbox?
15
votes
3answers
6k views
django template system, calling a function inside a model
I want to call a function from my model at a template such as:
class ChannelStatus(models.Model):
..............................
..............................
def ...
15
votes
3answers
5k views
django orm, how to view (or log) the executed query?
Is there a way I can print the query the Django ORM is generating?
Say I execute the following statement: Model.objects.filter(name='test')
How do I get to see the generated SQL query?
Thanks in ...
15
votes
6answers
2k views
Problems with contenttypes when loading a fixture in Django
I am having trouble loading Django fixtures into my MySQL database because of contenttypes conflicts. First I tried dumping the data from only my app like this:
./manage.py dumpdata escola > ...
15
votes
7answers
6k views
Django — User.DoesNotExist does not exist?
I'm trying to get hold of Django. I use Pydev on Eclipse. I have written a simple signup page that I can't get to work. Eclipse complains that User.DoesNotExist is undefined. Most likely, I am missing ...
15
votes
3answers
11k views
Default value for field in Django model
Suppose I have a model:
class SomeModel(models.Model):
id = models.AutoField(primary_key=True)
a = models.CharField(max_length=10)
b = models.CharField(max_length=7)
Currently I am ...
14
votes
4answers
5k views
Django: How should I store a money value?
I'm running into a paradigm problem here. I don't know whether I should store money as a Decimal(), or if I should store it as a string and convert it to a decimal myself. My reasoning is this:
...
14
votes
9answers
8k views
Django: Converting an entire set of a Model's objects into a single dictionary
If you came here from Google looking for model to dict, skip my question, and just jump down to the first answer. My question will only confuse you.
Is there a good way in Django to entire set of a ...
14
votes
4answers
4k views
How to limit the maximum value of a numeric field in a Django model?
Django has various numeric fields available for use in models, e.g. DecimalField and PositiveIntegerField. Although the former can be restricted to the number of decimal places stored and the overall ...
14
votes
6answers
5k views
Duplicating model instances and their related objects in Django / Algorithm for recusrively duplicating an object
I've models for Books, Chapters and Pages. They are all written by a User:
from django.db import models
class Book(models.Model)
author = models.ForeignKey('auth.User')
class ...
13
votes
1answer
2k views
Django: how to define two fields “unique” as couple
Is there a way to define a couple of fields as unique in Django?
I have a table of volumes (of journals) and I don't want more then one volume number for the same journal.
class ...
13
votes
4answers
6k views
Django signals vs. overriding save method
I'm having trouble wrapping my head around this. Right now I have some models that looks kind of like this:
def Review(models.Model)
...fields...
overall_score = ...
13
votes
9answers
874 views
Represent Ordering in a Relational Database
I have a collection of objects in a database. Images in a photo gallery, products in a catalog, chapters in a book, etc. Each object is represented as a row. I want to be able to arbitrarily order ...
12
votes
2answers
1k views
Get all related Django model objects
How can I get a list of all the model objects that have a ForeignKey pointing to an object? (Something like the delete confirmation page in the Django admin before DELETE CASCADE).
I'm trying to ...
12
votes
6answers
6k views
Django Dump Data For a Single Model?
Can you perform a 'dumpdata' in Django on just a single model (rather than the whole app) and if so, how?
E.g. for an app it would be...
python manage.py dumpdata myapp
However, I want some ...
12
votes
3answers
3k views
Django Manager Chaining
I was wondering if it was possible (and, if so, how) to chain together multiple managers to produce a query set that is affected by both of the individual managers. I'll explain the specific example ...
12
votes
7answers
4k views
How do you serialize a model instance in Django?
There is a lot of documentation on how to serialize a Model QuerySet but how do you just serialize to json the fields of a Model Instance?
12
votes
1answer
4k views
Django Imagefield not working properly via ModelForm
I'm certain I'm doing something really obviously stupid, but I've been trying to figure it out for a few hours now and nothing is jumping out at me.
I'm using a ModelForm so I can expose a few fields ...
11
votes
2answers
2k views
Django: Where does “DoesNotExist” come from?
All the time in Django I see DoesNotExist being raised like in db.models.fields.related.py. Not ObjectDoesNotExist which is defined in django.core.exceptions, but just DoesNotExist. Where is this ...
11
votes
1answer
2k views
Many to many relationships with additional data on the relationship
I'm trying to create a django database that records all my comic purchases, and I've hit a few problems. I'm trying to model the relationship between a comic issue and the artists that work on it.
A ...
11
votes
3answers
7k views
Django auto_now and auto_now_add
For Django 1.1.
I have this in my models.py:
class User(models.Model):
created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
When updating a row ...
11
votes
3answers
1k views
Unique BooleanField value in Django?
Suppose my models.py is like so:
class Character(models.Model):
name = models.CharField(max_length=255)
is_the_chosen_one = models.BooleanField()
I want only one of my Character instances ...
11
votes
3answers
5k views
Django: add image in an ImageField from image url
please excuse me for my ugly english ;-)
Imagine this very simple model :
class Photo(models.Model):
image = models.ImageField('Label', upload_to='path/')
I would like to create a Photo from ...
11
votes
5answers
4k views
Set Django IntegerField by choices=… name
When you have a model field with a choices option you tend to have some magic values associated with human readable names. Is there in Django a convenient way to set these fields by the human readable ...
11
votes
9answers
4k views
Django filter versus get for single object?
I was having a debate on this with some colleagues. Is there a preferred way to retrieve an object in Django when you're expecting only one?
The two obvious ways are:
try:
obj = ...