Tagged Questions

1
vote
1answer
62 views

Django: Extending Querysets / Connect multiple filters with OR

Hi! I have to work with a queryset, that is already filtered, eg. qs = queryset.filter(language='de') but in some further operation i need to undo some of the already applied filtering, eg not to take …
1
vote
0answers
75 views

Following a foreign-key of a commented item in a Django Queryset

Dear all, I'm working on a Django application allowing one to comment either a Text, its Paragraphs or the comments themselves. I'm using the Comment app bundled with Django, and A Text class …
1
vote
3answers
81 views

How Do I Select all Objects via a Relationship Model

Given the Model: class Profile(models.Model): user = models.ForeignKey(User, unique=True) class Thingie(models.Model): children = models.ManyToManyField('self', blank=True, …
0
votes
2answers
36 views

Modifying QuerySet result

Is it possible to change some specific items in a QuerySet object? In my case i'm trying to slicing "title" fields with length more than 40 characters and append "..." at the end of field.
0
votes
3answers
39 views

How can I use multiple queryset in a ModelChoiceField?

I'm just beginning to learn Django and I would like to use different queryset in a ModelChoiceField. I have 3 models like that : class Politic(models.Model): name = models.CharField(max_length=100) …
0
votes
2answers
42 views

Django Admin: Getting a QuerySet filtered according to GET string, exactly as seen in the change list?

Hi all In the Django admin, the user can set filters which limit the rows displayed in the change list. How can I get a QuerySet instance with filters set as defined by the query string? For …
0
votes
1answer
40 views

Django: Printing a queryset dynamically in the template

How can I print the columns specified in "fields_i_want" instead of hardcoding the column names in the template code? # Let's say I have this in my view: foo = …
0
votes
1answer
60 views

Django ORM: Chaining aggregated querysets into one

Can I chain these two querysets into one? qs1 = OrderTicket.objects.filter(date__gt=datetime.date(2009, 1, 1), date__lt=datetime.date(2009, 1, 30)).values('order_type').annotate(value_1 = …
0
votes
1answer
127 views

Newbie: Django : Adding calculated results to Queryset before passing to template

Hi All Its day two of my new life with Django, please excuse the simplicity of my question. I have an existing DB table(read-only access) that I have successfully displayed the contents of on a …
0
votes
1answer
282 views

Howto merge 2 Django QuerySets in one and make a SELECT DISTINCT

Hi, thats my code: ##### models.py ##### class SinglePoint(models.Model): attributes = models.TextField(blank=True) name = models.CharField(max_length=100) geom = models.PointField() …
0
votes
1answer
103 views

Modifying an attribute for each object in a queryset

Hi I've been using Django for over a year, but I think I've missed out on some very fundamental thing. I have a rather large queryset (1000+ objects) and I'd like to change a single attribute for …