Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
10
votes
5answers
2k views

How to Unit test with different settings in Django?

Is there any simple mechanism for overriding Django settings for a unit test? I have a manager on one of my models that returns a specific number of the latest objects. The number of objects it ...
8
votes
4answers
436 views

Where should django manager code live?

This is a pretty simple django patterns question. My manager code usually lives in models.py, but what happens when models.py is really huge? Is there any other alternative pattern to letting your ...
6
votes
3answers
1k views

Django custom managers - how do I return only objects created by the logged-in user?

I want to overwrite the custom objects model manager to only return objects a specific user created. Admin users should still return all objects using the objects model manager. Now I have found an ...
5
votes
1answer
209 views

Custom Manager to filter objects on site but not in admin?

I followed this example and it works great but I'm wondering if I can put in an exception so that when I am in the admin all objects show up (active and inactive). This might be simple but I can't ...
4
votes
3answers
1k views

Custom QuerySet and Manager without breaking DRY?

I'm trying to find a way to implement both a custom QuerySet and a custom Manager without breaking DRY. This is what I have so far: class MyInquiryManager(models.Manager): def for_user(self, ...
4
votes
1answer
242 views

How to filter/exclude inactive comments from my annotated Django query?

I'm using the object_list generic view to quickly list a set of Articles. Each Article has comments attached to it. The query uses an annotation to Count() the number of comments and then order_by() ...
2
votes
1answer
61 views

Django custom model managers

I'm confused about the correct way to use Django custom model managers - based on the docs you can create a series of managers for one model as a way of filtering. But why not create one manager class ...
2
votes
2answers
296 views

django soft delete doesn't cascade delete

I'm using a soft delete in my django admin, done like this. The issue is that when I delete a foreign key item, that it doesn't seem to trigger the deletes for all the items it's linked to. Or maybe ...
2
votes
1answer
192 views

How does use_for_related_fields work in Django?

I'm unable to grasp that from the docs. It's totally unclear to me, more specifically: Is it a global setting? So if I specify this attribute it on one of the model managers, will it be used ...
2
votes
1answer
840 views

override Django Get or Create

I have a model that I overrode the save method for so that the save method can be passed in some data and auto fill in a field before saving. Here is my model: class AccountModel(models.Model): ...
2
votes
1answer
282 views

Proper way to add record to many to many relationship in Django

First off, I'm planning on running my project on google app engine so I'm using djangoappengine which as far as I know doesn't support django's ManyToManyField type. Because of this I've setup my ...
2
votes
1answer
192 views

Django and the domain layer

How to organize my domain layer using django? I know I can write custom managers to hold my quries but what if I want something more flexible like the specification pattern. Is there any domain ...
2
votes
2answers
523 views

How to add a Manager from Field

What i want to do is when some model use my field, it will automaticaly add custom manager to that model. As far as i know, contibute_to_class provide such functionality class ...
1
vote
1answer
42 views

Performing a ModelAdmin action in Django

I'd like to be able to do something like: # from the docs def make_published(modeladmin, request, queryset): queryset.update(status='p') But I'm not using the Django admin site - I just need to ...
1
vote
1answer
66 views

How to use custom manager with related objects?

I have a custom manager. I want to use it for related objects. I found use_for_related_fields in docs. But it's not work in the way I did it. class RandomQueryset(models.query.QuerySet): def ...
1
vote
1answer
42 views

How to get the data returned by the previous query in the method of custom class manager?

I developing a custom manager class with chainable method. Got a problem. I need to randomize filtered query. To get a random record I need a count of filtered and distinct records. But I don't know ...
1
vote
1answer
58 views

How to use custom managers in chain queries?

I made a custom manager that has to randomize my query: class RandomManager(models.Manager): def randomize(self): count = self.aggregate(count=Count('id'))['count'] ...
1
vote
1answer
41 views

Custom model manager for auth_user

I want to include two extra managers on the auth user model, active and inactive, to give me just active, or just inactive users. This is how the model would look (even if the it is invalid): from ...
1
vote
1answer
75 views

Method to create a model instance based on a request object

I have a model like this: class UserSubmission(models.Model): mantra = models.CharField(max_length=64) ip = models.CharField(max_length=15) # xxx.xxx.xxx.xxx I want to create a function ...
1
vote
1answer
244 views

Django pagination (get page no. corresponding to the object)

I have a paginate I am trying to get the index page from an object page (sort of pagination in reverse) The get_paginated_posts returns a paginator for the model Post: class ...
1
vote
2answers
195 views

Django Managers

I have the following models code : from django.db import models from categories.models import Category class MusicManager(models.Manager): def get_query_set(self): return ...
1
vote
2answers
64 views

Do Django Models inherit managers? (Mine seem not to)

I have 2 models: class A(Model): #Some Fields objects = ClassAManager() class B(A): #Some B-specific fields I would expect B.objects to give me access to an instance of ClassAManager, ...
1
vote
2answers
274 views

Django: Is it a good idea to use an abstract base model in this situation?

class Account(models.Model): identifier = models.CharField(max_length=5) objects = MyCustomManager() class Meta: abstract = True class Customer(Account): ...
1
vote
3answers
506 views

Django: How would one organize this big model / manager / design mess?

To sum things up before I get into bad examples, et al: I'm trying to make an application where I don't have to write code in all my models to limit choices to the current logged in account (I'm not ...
0
votes
1answer
19 views

Is there a way to call generic managers (e.g. syncdb, flush) from custom managers in django?

For testing purposes, I'm writing a custom manager to reset the whole database, and repopulate certain tables with default fields. At the moment, I do this by calling mange.py flush, followed by ...
0
votes
1answer
58 views

Returning a custom model instance from a manager

I have a model that looks like this and stores data as key-value pairs. class Setting(models.Model): company = models.ForeignKey( Company ) name = models.CharField( ...
0
votes
2answers
43 views

What functions do the order of Django Managers affect?

So, I've read most of the docs and I've been looking around on SO a bit, but I can't quite find the answer to my question. I'll start with the code. # Manager class ActiveManager(models.Manager): ...
0
votes
2answers
38 views

Help with creating a custom create and a custom get method

I have two models like so: class Visit(models.Model): id = models.AutoField(primary_key=True) name = models.CharField(max_length=65535, null=False) class Session: id = ...
0
votes
0answers
50 views

Denormalizing the Django Manager

At the database level, we typically want to normalize the data by splitting it up over a number of tables. At the object level however, there are many cases where it would be nice if we could query on ...
0
votes
3answers
243 views

Using Django custom manager function on an already filtered queryset

Consider the following case: class MyModelManager(models.Manager): def my_filter(self): return [some code here].filter(field_A__gt=3) class MyModel(models.Model): # some fields ...
0
votes
1answer
85 views

Custom Chainable QuerySet

This is a piece of my code from django.db import models from django.db.models.query import QuerySet from mptt.models import MPTTModel from base.models import Content, OrderedContent class ...
0
votes
1answer
116 views

create fixtures with custom manager methods, json dumps and ways to avoid type error :xxx is not json serializable

I'm trying to create a test fixture using custom manager methods as my app uses a subset of dbtables and fewer records. so i dropped the idea of using initial_data. In manager I'm doing something like ...
0
votes
1answer
263 views

Annotate and Aggregate function in django

In django I have the following tables and am trying to count the number of votes by item. class Votes(models.Model): user = models.ForeignKey(User) item = models.ForeignKey(Item) class ...
0
votes
2answers
80 views

Why does declaring a manager to a Django model, void “objects”

I have declared a manager to the following model, but after doing so, I can no longer use List.objects.get(). Anybody know why? class List(models.Model): title = models.CharField(max_length=20, ...
0
votes
1answer
100 views

Managers, model inheritance or what for slicing Users in django?

I'm writing a Project in Django where I've 5 kind of groups of Users: Group1 Group2 ... Then I've a Model, Item which has many relation with users, the Item has one Owner (a User in Group1), a ...
0
votes
1answer
233 views

Refactoring a custom User model to user UserProfile: Should I create a custom UserManager or add user.get_profile() dozens of times?

I have been refactoring an app that had customized the standard User model from django.contrib.auth.models by creating a UserProfile and defining it with AUTH_PROFILE_MODULE. The problem is the ...
0
votes
2answers
100 views

Filtering manager for django model, customized by user

I have a model, smth like this: class Action(models.Model): def can_be_applied(self, user): #whatever return True and I want to override its default Manager. But I don't know ...
0
votes
1answer
390 views

django access logged in user in custom manager

I want to access the currently logged in user in a custom manager I have wrote. I want to do this so that I can filter down results to only show objects they have access to. Is there anyway of doing ...
0
votes
1answer
150 views

Django: Model inheriting from base model with custom manager. Can the manager have dynamic variables?

I need to have all my models inherit this manager (Haven't tested this manager and it may be ridiculous so I'm completely open to suggestion/criticism on it as well): class ...
0
votes
2answers
404 views

Django: How do you access a model's instance from inside a manager?

class SupercalifragilisticexpialidociousManager(models.Manager): # Sorry, I'm sick of Foo and Spam for now. def get_query_set(self, account=None): return ...
-1
votes
2answers
272 views

Problems with django managers

I have following model: class UserProfile(models.Model): """ User profile model, cintains a Foreign Key, which links it to the user profile. """ about = ...