0
votes
1answer
21 views
How to count and display objects in relation ManyToMany in Django
Hi!
I have a simple model with news and categories:
class Category(models.Model):
name = models.CharField()
slug = models.SlugField()
class News(models.Model):
categ …
2
votes
1answer
20 views
Django - how to determine if model class is abstract
If a django model is made abstract, like below, is there a way to inspect the class to determine that it is abstract?
class MyModel(models.Model):
class Meta:
abstract = Tru …
0
votes
1answer
31 views
how to insert a infomation on a table in Django
This is my form on models.py
class ItemForm(forms.Form):
itemname = forms.CharField(max_length=100)
itemwording = forms.CharField(max_length=100)
notes = forms.CharFi …
0
votes
2answers
33 views
Need help with Django model design, ManyToManyField “through” an intermediate model and its implications for uniqueness
I have the following Django models: -
class Company(models.Model):
name = models.CharField(max_length=50)
is_active = models.BooleanField(db_index=True)
class Phase(mode …
0
votes
1answer
51 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 …
2
votes
3answers
57 views
What’s the best way to create a ‘history’ type model in django?
I'd like to create a feature for my Django app similar to Django admin's 'Recent Actions', in order to store history information on my other models.
For example say I have two mod …
0
votes
1answer
27 views
Django database query - return the most recent three objects
Hi
This can't be hard, but... I just need to get the most recent three objects added to my database field.
So, query with reverse ID ordering, maximum three objects.
Been fid …
1
vote
1answer
23 views
Django FileField url not relative
I have something like:
MEDIA_ROOT = '/home/httpd/foo/media/'
MEDIA_URL = 'http://www.example.org/media/'
(...)
file = models.FileField(upload_to='test')
When I create an obje …
0
votes
1answer
25 views
How can I use conditional sorting at Django queries?
I'm implementing a basic forum app. I would like to sort the questions by their last reply time.
I have the following line:
questions = Question.objects.filter(deleted=False). …
0
votes
1answer
34 views
object_list of multiple models in django
I have multiple abstract models similar to this
Class Article(models.Model):
title = models.CharField()
body = models.TextField()
created_date = models.DateTimeField() …
0
votes
2answers
85 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)
…
2
votes
5answers
79 views
Can Django models use MySQL functions?
Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to pr …
1
vote
2answers
69 views
How to get two random records with Django
How do I get two distinct random records using Django? I've seen questions about how to get one but I need to get two random records and they must differ.
0
votes
1answer
42 views
How can I limit the available choices for a foreign key field in a django modelformset?
Application:
This is a workshop proposal system for a conference. A user can create presenters and workshops, and link them together. Each user should only have access to the pres …
1
vote
1answer
40 views
django: time range based aggregate query
Hi there!
I have the following models, Art and ArtScore:
class Art(models.Model):
title = models.CharField()
class ArtScore(models.Model):
art = models.ForeignKey(Art)
…
