active questions tagged django+django-models - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T23:55:44Zhttp://stackoverflow.com/feeds/tag/django+django-modelshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1923826/django-how-do-i-validate-uniquetogether-from-within-the-model0Django: How do I validate unique_together from within the modelorokusaki2009-12-17T18:56:18Z2009-12-17T20:18:31Z
<p>I have the following:</p>
<pre><code>class AccountAdmin(models.Model):
account = models.ForeignKey(Account)
is_master = models.BooleanField()
name = models.CharField(max_length=255)
email = models.EmailField()
class Meta:
unique_together = (('Account', 'is_master'), ('Account', 'username'),)
</code></pre>
<p>If I then create a new AccoutnAdmin with the same username as another on the same account, instead of it giving me an error to display in the template, it breaks with an IntegrityError and the page dies. I wish that in my view, I could just go:</p>
<pre><code>if new_accountadmin_form.is_valid():
new_accountadmin_form.save()
</code></pre>
<p>How do I conquer this problem. Is there a second is_valid() type of method that checks the DB for violation of the "unique_together = (('Account', 'is_master'), ('Account', 'username'),)" part?</p>
<p>I would like not to have to catch an IntegrityError in my view. That's domain logic mixed with presentation logic. It violates DRY because if I display the same form on 2 pages, I'll have to repeat the same block. It also violates DRY because if I have two forms for the same thing, I have to write the same except: again.</p>
http://stackoverflow.com/questions/1923551/how-should-i-build-this-django-model-to-do-what-i-want0How should I build this Django model to do what I wantorokusaki2009-12-17T18:05:29Z2009-12-17T18:32:43Z
<p>This is what I had before (but realized that you can't obviously do it in this order:</p>
<pre><code>class MasterAdmin(models.Model):
"""
A permanent admin (one per Account) that shouldn't be deleted.
"""
admin = models.OneToOneField(AccountAdmin)
class Account(models.Model):
"""
A top-level account in the system.
"""
masteradmin = models.OneToOneField(MasterAdmin)
class AccountAdmin(models.Model):
"""
An Account admin that can be deleted. This includes limited permissions.
"""
account = models.ForeignKey(Account)
</code></pre>
<p>I think you can see what I want to do from the example. I want to have an MasterAccountAdmin which shares the attributes from AccountAdmin. The purpose is that I want to give people the ability to delete an AccountAdmin, but not MasterAccountAdmin. I didn't want to just have an attribute on AccountAdmin called "master = models.BooleanField()".</p>
<p>Obviously this example won't work because MasterAdmin is referencing AccountAdmin before its creation, but I wanted to show what I'm trying to achieve. Am I thinking of this all wrong?</p>
http://stackoverflow.com/questions/1895263/sorting-products-after-dateinterval-and-weight0Sorting products after dateinterval and weightBaresi2009-12-13T01:12:31Z2009-12-17T14:06:59Z
<p>What I want is to be able to get this weeks/this months/this years etc. hotest products. So I have a model named <code>ProductStatistics</code> that will log each hit and each purchase on a day-to-day basis. This is the models I have got to work with:</p>
<pre><code>class Product(models.Model):
name = models.CharField(_("Name"), max_length=200)
slug = models.SlugField()
description = models.TextField(_("Description"))
picture = models.ImageField(upload_to=product_upload_path, blank=True)
category = models.ForeignKey(ProductCategory)
prices = models.ManyToManyField(Store, through='Pricing')
objects = ProductManager()
class Meta:
ordering = ('name', )
def __unicode__(self):
return self.name
class ProductStatistic(models.Model):
# There is only 1 `date` each day. `date` is
# set by datetime.today().date()
date = models.DateTimeField(default=datetime.now)
hits = models.PositiveIntegerField(default=0)
purchases = models.PositiveIntegerField(default=0)
product = models.ForeignKey(Product)
class Meta:
ordering = ('product', 'date', 'purchases', 'hits', )
def __unicode__(self):
return u'%s: %s - %s hits, %s purchases' % (self.product.name, str(self.date).split(' ')[0], self.hits, self.purchases)
</code></pre>
<p>How would you go about sorting the Products after say <code>(hits+(purchases*2))</code> the latest week?</p>
<p>This structure isn't set in stone either, so if you would structure the models in any other way, please tell!</p>
http://stackoverflow.com/questions/1451883/ordering-in-the-manyrelatedmanager-object0Ordering in the ManyRelatedManager object Bing Jian2009-09-20T20:05:04Z2009-12-17T04:00:02Z
<p>I have a general question regarding the ordering in
the ManyRelatedManager object. For example,
There are two classes in my model: one is
called Book for books and another is Author for authors.</p>
<p>A many-to-many field is defined in class Book
authors = models.ManyToManyField(Author)</p>
<p>In database, the many-to-many relationship
is described in an additional table book_author
with three columns: (id, book_id, author_id)</p>
<p>Now for a Book object b, both b.authors.all() and b.authors.iterator()
are sorted in the order of book_author.author_id.
But what I want is to retrieve the authors of b
in the order of book_author.id because this is
the right order of the authors.</p>
<p>Any solutions? Many thanks in advance! </p>
http://stackoverflow.com/questions/1917357/is-there-a-way-to-express-django-admin-settings-inside-the-models-instead-of-adm1Is there a way to express Django admin settings inside the models, instead of admin.py?Off Rhoden2009-12-16T20:13:08Z2009-12-16T20:29:56Z
<p>Talking about Django 1.1.1. I thought at one time (0.96) the kinds of things put inside of the admin.py file were part of an inner class of the model. </p>
<p>There's a certain beauty in having all of this in one place. But I don't know if this change was out of necessity. Any compelling reasons one way or the other?</p>
http://stackoverflow.com/questions/1916522/does-django-support-model-classes-that-inherit-after-many-non-abstract-models0Does Django support model classes that inherit after many non-abstract models?Monika Sulik2009-12-16T18:07:10Z2009-12-16T19:19:02Z
<p>Lets say I have three django model classes - lets call them A, B and C. If A and B are abstract, I can do something like:</p>
<pre><code>class C(A,B):
pass
</code></pre>
<p>What if they aren't abstract and I do the same? Will everything still work correctly or no? Or have I got it wrong and this should not be done with abstract models either?</p>
<p>I'm having some issues which I'm attributing to the fact that the answer is probably no, but I'd still prefer to make sure about this if anyone knows :)
The specific use case I had for this is probably better served by <a href="http://www.djangoproject.com/documentation/models/generic%5Frelations/" rel="nofollow">Generic Relations</a> (I only recently discovered their existence), so I guess it would be understandable if the Django team made a design decision like this (I can't see many people needing to do this). I'd just like to know for sure what the case is.</p>
<h2>Edit 1 (after Dominic's answer)</h2>
<p>Interesting... The problem we're having is a structure similar to IMDb (I think IMDb is a bit easier to understand than the topic matter we actually have, so I'll use them as an example). On IMDb they have pages for People and pages for Movies and both People and Movies have their own message boards.</p>
<p>We've ended up connecting message boards to the People and Movies by creating a model called MessageboardOwner (with only one attribute - the id added automatically by Django), which "owns" the message board and People and Movies inherit it. The problem is that our "People" class inherits from two other classes also. The class definition is something like:</p>
<pre><code>class Person(A,B,MessageboardOwner):
</code></pre>
<p>Initially this seemed to work out fine, but then today something rather weird happened... I was deleting a Person in the admin and the admin asked the "Are you sure?" question and was showing me what other objects it would have to delete. It was trying to delete two message boards, not one. One of these message boards should have been owned by a Movie, not a Person.</p>
<p>Upon looking at what exactly was in the database, I found that this Person instance was using the same MessageboardOwner instance as the Movie was. When I played around with it, what came out was that the Movie class, which inherited only after MessageboardOwner, seemed to work ok. Saving the Person, however, only created a MessageboardOwner object if one didn't already exist (or possibly overwrote the existing one - I'm not sure). I also found that the id fields inherited from A, B and MessageboardOwner were always equal, which seemed strange to me.</p>
http://stackoverflow.com/questions/1913875/django-model-on-delete-cascade-policy-emulate-on-delete-restrict-instead-genera0Django model ON DELETE CASCADE policy, emulate ON DELETE RESTRICT instead, general solutionplmet2009-12-16T10:54:19Z2009-12-16T14:33:53Z
<p>I'd like to delete an instance of a model, but only if it doesn't have any other instance of another class with a foreign key pointing to it. From Django documentation:</p>
<blockquote>
<p>When Django deletes an object, it emulates the behavior of the SQL constraint ON DELETE CASCADE -- in other words, any objects which had foreign keys pointing at the object to be deleted will be deleted along with it.</p>
</blockquote>
<p>In a given example:</p>
<pre><code>class TestA(models.Model)
name = models.CharField()
class TestB(models.Model)
name = models.CharField()
TestAs = models.ManyToManyField(TestA)
# More classes with a ManyToMany relationship with TestA
# ........
</code></pre>
<p>I'd like something like:</p>
<pre><code>tA = TestA(name="testA1")
tB = TestB(name="testB1")
tB.testAs.add(tA)
t = TestA.objects.get(name="testA1")
if is_not_foreignkey(t):
t.delete()
else:
print "Error, some instance is using this"
</code></pre>
<p>Should print the error. I know I can check for specific instances the foreignkey sets, like in this case check t.TestB_set(), but I am looking for a more general solution for any given model.</p>
http://stackoverflow.com/questions/1857822/unique-model-field-in-django-and-case-sensitivity-postgres0Unique model field in Django and case sensitivity (postgres)chefsmart2009-12-07T04:31:16Z2009-12-16T09:26:04Z
<p>Consider the following situation: -</p>
<p>Suppose my app allows users to create the states / provinces in their
country. Just for clarity, we are considering only ASCII characters
here.</p>
<p>In the US, a user could create the state called "Texas". If this app
is being used internally, let's say the user doesn't care if it is
spelled "texas" or "Texas" or "teXas"</p>
<p>But importantly, the system should prevent creation of "texas" if
"Texas" is already in the database.</p>
<p>If the model is like the following:</p>
<pre><code>class State(models.Model):
name = models.CharField(max_length=50, unique=True)
</code></pre>
<p>The uniqueness would be case-sensitive in postgres; that is, postgres
would allow the user to create both "texas" and "Texas" as they are
considered unique.</p>
<p>What can be done in this situation to prevent such behavior. How does
one go about providing case-<strong>insenstitive</strong> uniqueness with Django and
Postgres </p>
<p>Right now I'm doing the following to prevent creation of case-
insensitive duplicates.</p>
<pre><code>class CreateStateForm(forms.ModelForm):
def clean_name(self):
name = self.cleaned_data['name']
try:
State.objects.get(name__iexact=name)
except ObjectDoesNotExist:
return name
raise forms.ValidationError('State already exists.')
class Meta:
model = State
</code></pre>
<p>There are a number of cases where I will have to do this check and I'm not keen on having to write similar iexact checks everywhere.</p>
<p>Just wondering if there is a built-in or
better way? Perhaps db_type would help? Maybe some other solution exists?</p>
http://stackoverflow.com/questions/1160598/how-to-use-schemas-in-django2How to use schemas in Django?Nako2009-07-21T17:30:53Z2009-12-16T07:18:15Z
<p>I whould like to use postgreSQL schemas with django, how can I do this?</p>
http://stackoverflow.com/questions/1904978/how-can-i-sort-by-the-id-of-a-manytomanyfield-in-django0How can I sort by the id of a ManyToManyField in Django?Tim Trueman2009-12-15T03:25:11Z2009-12-15T23:28:03Z
<p>I've got a ManyToManyField in a user object and it's used to map the users that user is following. I'm trying to show a subset list of who they have most recently followed. Is there a trick in .order_by() that will allow me to sort by the id of the ManyToManyField? The data is there, right?</p>
<pre><code># (people the user is following)
following = models.ManyToManyField(User, related_name="following", blank=True)
theuser.following.filter(user__is_active=True).order_by("user__id")
</code></pre>
<p>That will give me a list of the users the user is following but ordered by when they joined. I want the order of the following list to be in order of when the user followed them.</p>
http://stackoverflow.com/questions/1902927/is-there-any-way-to-make-djangos-getorcreate-to-create-an-object-without-sav0 Is there any way to make Django's get_or_create() to create an object without saving it to database? Continuation2009-12-14T19:23:45Z2009-12-14T21:10:18Z
<p>When using Django's get_or_create(), when created=True, is there any way to
make it so that it creates an object without saving it to DB?</p>
<p>I want to take the newly created object, do some validation tests, and
only save it to DB if it passes all tests. </p>
http://stackoverflow.com/questions/1903158/validate-that-atleast-one-modelfield-has-value-in-django-admin0Validate that atleast one modelfield has value in Django adminEpcylon2009-12-14T20:04:23Z2009-12-14T20:16:33Z
<p>Given the following model, how do I require that atleast one of the two fields has been given a value?</p>
<pre><code>class ZipUpload(models.Model):
zip_file = models.FileField(upload_to="/tmp", blank=True,
help_text='Select a file to upload.')
zip_file_path = models.FilePathField(path="/tmp", blank=True,
help_text="A path to a file on the server)
</code></pre>
<p>I'm working on a small site with a small set of users, so I was hoping to make this work with just using the standard admin-site.
I have considered overriding <code>Model.save()</code>, and adding a check there, but then I don't know how to alert the user of the error in a good way.</p>
http://stackoverflow.com/questions/1902487/how-to-properly-remove-a-specific-manytomany-relationship0How to properly remove a specific ManyToMany relationship?Matt McCormick2009-12-14T18:05:57Z2009-12-14T19:00:23Z
<p>I have a ManyToMany relationship with one of my Models. On deleting a child, I want to remove the relationship but leave the record as it might be being used by other objects. On calling the delete view, I get an AttributeError error:</p>
<blockquote>
<p>Exception Value: 'QuerySet' object has
no attribute 'clear'</p>
</blockquote>
<p>This is my models.py:</p>
<pre><code>class Feed(models.Model):
username = models.CharField(max_length=255, unique=True)
class Digest(models.Model):
name = models.CharField(max_length=255)
user = models.ForeignKey(User)
items = models.PositiveIntegerField()
keywords = models.CharField(max_length=255, null=True, blank=True)
digest_id = models.CharField(max_length=20, unique=True)
time_added = models.DateTimeField(auto_now_add=True)
active = models.BooleanField(default=1)
feeds = models.ManyToManyField(Feed)
</code></pre>
<p>And the relevant section of views.py:</p>
<pre><code>def feed_delete(request, id):
digest = get_object_or_404(Digest, id=id)
if digest.user == request.user:
Feed.objects.get(id=request.POST.get('id')).digest_set.filter(id=id).clear()
return HttpResponseRedirect(digest.get_absolute_url())
</code></pre>
http://stackoverflow.com/questions/1463398/djangohow-to-including-inline-model-fields-in-the-listdisplay0Django: how to including inline model fields in the list_display?Daniel Brain2009-09-23T00:48:30Z2009-12-14T03:16:10Z
<p>I'm attempting to extend django's contrib.auth User model, using an inline 'Profile' model to include extra fields.</p>
<pre><code>from django.contrib import admin
from django.contrib.auth.models import User
from django.contrib.auth.admin import UserAdmin
class Profile(models.Model):
user = models.ForeignKey(User, unique=True, related_name='profile')
avatar = '/images/avatar.png'
nickname = 'Renz'
class UserProfileInline(admin.StackedInline):
model = Profile
class UserProfileAdmin(UserAdmin):
inlines = (UserProfileInline,)
admin.site.unregister(User)
admin.site.register(User, UserProfileAdmin)
</code></pre>
<p>This works just fine for the admin 'Change User' page, but I can't find a way to add inline model fields in the list_display. Just specifying the names of Profile fields in list_display give me an error:</p>
<blockquote>
<p>UserProfileAdmin.list_display[4], 'avatar' is not a callable or an attribute of 'UserProfileAdmin' or found in the model 'User'.</p>
</blockquote>
<p>I can create a callable which looks up the user in the Profile table and returns the relevant field, but this leaves me without the ability to sort the list view by the inline fields, which I really need to be able to do.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1865952/django-filtering-models-on-the-difference-of-counts-of-related-models1Django: filtering models on the difference of Counts of related modelsJK Laiho2009-12-08T10:03:05Z2009-12-13T20:51:32Z
<p>I've got a bunch of Order objects, each connected to one or more OrderRow objects (visible as a reverse relation to their parent Orders with Order.order_rows.all()).</p>
<p>Each OrderRow has a <b>collection_status</b> attribute, which can be 'collected', 'uncollected' or a bunch of other special values. Each Order has a <b>status</b> attribute, one of the valid values being 'processing'.</p>
<p>I'm at a loss trying to build an Order QuerySet that lists Order objects with the following criteria: Order status is 'processing', the count of its <code>collection_status='collected'</code> OrderRows is less than the total count of its OrderRows. Orders that have been not at all collected or partially collected, but not fully collected, that is.</p>
<p>To put it in an explicit way:</p>
<p>Order with two rows, both 'uncollected': included in the QS<br>
Order with three rows, one 'collected', two 'uncollected': included in the QS<br>
Order with two rows, both 'collected': NOT included in the QS!</p>
<p>(You can replace 'uncollected' with any other value that isn't 'collected' and the criteria is still the same; it's 'collected' vs. any other collection_status)</p>
<p>I've gotten as far as Order.objects.filter(status__exact='processing'), but beyond that, all my attempts at annotations, Q() objects etc. have failed miserably.</p>
http://stackoverflow.com/questions/1896117/choicefield-render-does-not-distinct-between-empty-string-or-decimal00Choicefield render does not distinct between empty string or Decimal('0')GerardJP2009-12-13T10:33:18Z2009-12-13T13:59:14Z
<p>Hi all,</p>
<p>I've got a form that renders a choicefield widget with a total of 3 choice values: 0, 6, 19 (these are of type "Decimal').</p>
<p>When editing an object via a modelform that has the value 6 or 19 the widget has selected the proper one when rendered, but when the object is stored with the value "Decimal('0') it has selected the empty_label (which was added manually, since the list is not populated from a model when adding new objects)</p>
<p>Populator:</p>
<pre><code>taxlevels = [('', u'---'),]
taxlevels += Metadata.objects.values_list('value', 'display'). \
filter(attribute__startswith='TAX').order_by('attribute')
</code></pre>
<p>Need I subclass the render method to do this?</p>
<p>Thanx!</p>
<p>EDIT: Added code snippets (didn't wanna spam ;)</p>
<p>The form:</p>
<pre><code>class ProductForm(forms.ModelForm):
""" Product Model field specifications for new/edit.
"""
class Meta:
model = Product
def clean(self):
cleaned_data = self.cleaned_data
if cleaned_data.get('tax_level') == '--':
msg = _('Choose a VAT percentage.')
self._errors['tax_level'] = ErrorList([msg])
return cleaned_data
description = forms.CharField(
label = _('Notes'),
help_text = _('Max. 100 characters'),
max_length = 100,
widget = forms.Textarea(attrs =
{'rows': 2, 'cols': 40, 'maxlength': 100}
),
required = False,
)
# -- snip --
btwlevels = [('', u'---'),]
btwlevels += Metadata.objects.values_list('value', 'display'). \
filter(attribute__startswith='BTW').order_by('attribute')
tax_level = forms.ChoiceField(
label = _('VAT'),
choices = btwlevels,
required = True,
)
</code></pre>
<p>The Model:</p>
<pre><code>class Product(models.Model):
""" Product Model
"""
objects=UserFilteredManager()
owner = models.ForeignKey(User, editable=False)
order = models.ForeignKey(Order, editable=False)
name = models.CharField(_('Name'), max_length=50)
description = models.CharField(_('Notes'), max_length=100)
amount = models.DecimalField(_('Amount'), max_digits=10, decimal_places=2)
unit_price = models.DecimalField(_('Unit price'), max_digits=10,
decimal_places=2)
tax_level = models.DecimalField(_('Tax'), max_digits=3, decimal_places=1)
</code></pre>
<p>hope this helps, I'll check the TypedChoiceField in the meantime.</p>
<p>Thanx again.</p>
http://stackoverflow.com/questions/1892577/how-do-i-add-a-temporary-field-to-a-model-in-django1How do I add a temporary field to a model in Django?Pridkett2009-12-12T06:37:30Z2009-12-12T17:22:24Z
<p>I'm developing a web-app where the user can create multiple related elements and then save those elements to a database. The webapp has no idea of what the primary keys will be in the database so it assigns each element a UUID. These UUIDs are saved with each element in the database. When the webapp sends the data to the webserver to be placed in the database it encodes everything using JSON. The JSON is then deserialized by the webserver using <code>serializers.deserialize('json', DATA)</code>. However, some of the models have foreign keys, which are sent in the JSON payload as references to the UUIDs of the associated elements rather than the database ids. For example, we may have a simple link object:</p>
<pre><code>class Link(models.Model):
uuid = models.CharField(max_length=32)
source = models.ForeignKey(Node, related_name='source')
target = models.ForeignKey(Node, related_name='target')
</code></pre>
<p>If the source had an id value of 2 and the target had an id value of 12, this would be serialized to JSON as this:</p>
<pre><code>{"uuid": "[some long uuid]",
"source": 2,
"target": 12}
</code></pre>
<p>However, because in this case we don't know the database ids of source and target, probably because they haven't been set yet, the best I can do is pass in the UUID's like this:</p>
<pre><code>{"uuid": "[some long uuid]",
"sourceuuid": "[uuid of source]",
"targetuuid": "[uuid of target]"}
</code></pre>
<p>Unfortunately, this raises an exception of <code>FieldDoesNotExist: Link has no field named u'sourceuuid'</code> when I call <code>serializers.deserialize</code> on the data.</p>
<p>I'd like to find a way that I can pass the UUID's in and then have the database fill in the id's once it's saved the appropriate parts or look them up where necessary. I don't want to save <code>sourceuuid</code> and <code>targetuuid</code> in the database as it's a lot less space to save an integer and the indicies should be faster too.</p>
<p>So, what I'm looking for is a temporary field. One that I can instantiate and reference, but that is never saved back to the database. Any ideas on how I would create such a thing?</p>
<p><strong>UPDATE with more clarification</strong></p>
<p>Thanks for the help so far, I'm aware that they're Python objects and I can assign arbitrary fields to the objects. However, the problem is that <code>serializers.deserialize('json', INDATA)</code> throws errors.</p>
<p>For reference here's a hunk of JSON that the deserializer likes, it has the foreign keys with their IDs:</p>
<pre><code>ser='''[{"pk": 1, "model": "myapp.link",
"fields": {"uuid": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"source": 2,
"target": 12}}]'''
serializer.deserialize('json',ser)
</code></pre>
<p>However, what I can provide is this:</p>
<pre><code>ser='''[{"pk": 1, "model": "myapp.link",
"fields": {"uuid": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"sourceuuid": "11111111-2222-3333-4444-555555555555",
"targetuuid": "66666666-7777-8888-9999-000000000000"}}]'''
serializer.deserialize('json',ser)
FieldDoesNotExist: Link has no field named u'sourceuuid'
</code></pre>
<p>The reason I need to dummy field to be an actual field is because the <code>deserialize</code> requires actual fields.</p>
http://stackoverflow.com/questions/1889916/how-to-get-hotest-entry-list-in-django-models0How to get hotest entry list in Django models?Tran Tuan Anh2009-12-11T18:15:05Z2009-12-12T01:44:16Z
<p>My models:</p>
<p>in *hit_app*:</p>
<pre><code>hits = models.PositiveIntegerField(default=0)
object_pk = models.TextField() # not foreign key, but it is related to entry_id
content_object = generic.GenericForeignKey('content_type', 'object_pk')
...
</code></pre>
<p>in *entry_app*:</p>
<pre><code>title = ...
content = ...
pub_date = ...
</code></pre>
<p>How can I get a list of hotest entries by hits. If possible, please help me filter out the list in a week, one day recently. Thank you very much!</p>
http://stackoverflow.com/questions/1891184/how-i-can-get-the-class-of-a-model-in-a-widget-through-modelforms-in-admin0How i can get the class of a model in a widget through ModelForms in Admin?diegueus92009-12-11T22:09:21Z2009-12-11T22:24:47Z
<p>i need make a special widget for ForeignKeys in Admin, but i need get the class of model in the widget, somebody know how i can do it?</p>
<p>I think the Widget have a Field, and Field have a ModelForm, and obviously ModelForm have a Model, but i need this model in a widget in the admin.</p>
http://stackoverflow.com/questions/638647/paging-depending-on-grouping-of-items-in-django4Paging depending on grouping of items in DjangoMichael2009-03-12T13:36:19Z2009-12-11T21:23:22Z
<p>For a website implemented in Django/Python we have the following requirement:</p>
<p>On a view page there are 15 messages per web paging shown. When there are more two or more messages from the same source, that follow each other on the view, they should be grouped together. </p>
<p>Maybe not clear, but with the following exemple it might be:</p>
<p>An example is (with 5 messages on a page this time):</p>
<pre><code> Message1 Source1
Message2 Source2
Message3 Source2
Message4 Source1
Message5 Source3
...
</code></pre>
<p>This should be shown as:</p>
<pre><code>Message1 Source1
Message2 Source2 (click here to 1 more message from Source2)
Message4 Source1
Message5 Source3
Message6 Source2
</code></pre>
<p>So on each page a fixed number of items is shown on page, where some have been regrouped.</p>
<p>We are wondering how we can create a Django or MySQL query to query this data in a optimal and in an easy way. Note that paging is used and that the messages are sorted by time.</p>
<p>PS: I don't think there is a simple solution for this due to the nature of SQL, but sometimes complex problems can be easily solved</p>
http://stackoverflow.com/questions/1889176/filtering-the-aggregate-in-the-django-orm0Filtering the Aggregate in the Django ORMJason Christa2009-12-11T16:25:15Z2009-12-11T19:39:02Z
<p>I have a function that looks like this:</p>
<pre><code>def post_count(self):
return self.thread_set.aggregate(num_posts=Count('post'))['num_posts']
</code></pre>
<p>I only want to count posts that have their status marked as 'active'. Is there an easy way to add a filter before the Count function?</p>
http://stackoverflow.com/questions/1884990/refactor-large-models-py-file-in-django-app2Refactor large models.py file in Django app.Alasdair2009-12-11T00:04:13Z2009-12-11T12:29:22Z
<p>After reading monokrome's answer to <a href="http://stackoverflow.com/questions/1883322/where-should-django-manager-code-live">Where should Django manager code live?</a>, I've decided to split a large <code>models.py</code> into smaller, more manageable files. I'm using the folder structure</p>
<pre><code>foodapp/
models/
__init__.py #contains pizza model
morefood.py #contains hamburger & hotdog models
</code></pre>
<p>In <code>__init__.py</code>, I import the models from <code>morefood.py</code> with</p>
<pre><code>from morefood import hamburger, hotdog
</code></pre>
<p>However, when I run <code>python manage.py syncdb</code>, the only table created is <code>foodapp_pizza</code> - What do I need to do to get Django to create tables for the models I have imported from <code>morefood.py</code>?</p>
http://stackoverflow.com/questions/1882275/how-to-restrict-models-foreign-keys-to-foreign-objects-having-the-same-property0How to restrict models foreign keys to foreign objects having the same propertyGhislain Leveque2009-12-10T16:36:09Z2009-12-10T16:44:36Z
<p>Here is my example :</p>
<p>We have printers. We can define page formats that are linked to a specific printer then we define workflows that select a starting format (first page added to the printing job), a body format and an end format (last page added to the printing job).</p>
<p>Start and End are not required (null and blank = True)</p>
<p>I want to be sure that start, body and end will be formats of the same printer.</p>
<pre><code>class Printer(models.Model):
name = models.CharField(max_length = 20)
class Format(models.Model):
name = models.CharField(max_length = 20)
format = models.TextField()
printer = models.ForeignKey(Printer)
class Workflow(models.Model):
name = models.CharField(max_length = 20)
startfmt = models.ForeignKey(Format, related_name = 'start_workflow', null = True, blank = True)
bodyfmt = models.ForeignKey(Format, related_name = 'start_workflow')
endfmt = models.ForeignKey(Format, related_name = 'start_workflow', null = True, blank = True)
</code></pre>
<p>So I need this model to validate that startfmt, bodyfmt and endfmt reference formats that share the same printer... how ?</p>
http://stackoverflow.com/questions/1880530/django-many-to-many-insert-ordering0Django Many To Many Insert OrderingArif2009-12-10T12:04:30Z2009-12-10T13:27:14Z
<p>Hi everyone,</p>
<p>We have been struggling with this for a few days and have done lots of searches on the web.</p>
<p>We are trying to figure out how entries are saved in Django forms for many to many fields.</p>
<p>For example we have a news model that has a many to many relationship with images. When we add images to a news article e.g. images with id 10,2,14 we can see the post values are the following when saving a news article form:</p>
<ul>
<li>photos 10 </li>
<li>photos 2 </li>
<li>photos 14</li>
</ul>
<p>When we look in the many to many intersection table the order has not been preserved. We can see no logic in the order the photos are inserted.</p>
<p>Hopefully that makes sense!</p>
<p>Many thanks for your answers in advance.</p>
<p>Arif</p>
http://stackoverflow.com/questions/972929/advanced-search-for-a-specific-django-model0Advanced search for a specific Django modelRasiel2009-06-09T23:00:37Z2009-12-09T21:14:50Z
<p>I'm aware of full text search applications like <a href="http://code.google.com/p/django-solr-search/" rel="nofollow">Django Solr</a> and solango, etc.</p>
<p>What I'm looking to built is more akin to an advanced search for a real estate site.
E.g they can choose location, price, etc. similar to <a href="http://www.viewr.com" rel="nofollow">www.viewr.com</a> advanced search.</p>
<p>What I have done so far is this, under the models custom manager:</p>
<pre><code>def advanced_search(self, district, location, type, facilities, features, not_permitted):
q_objects = []
l_objects = []
t_objects = []
fc_objects = []
ft_objects = []
np_objects = []
if district:
if location:
for loc in location:
l_objects.append(Q(location__exact=loc))
else:
l_objects.append(Q(location__district=district))
if type:
for ty in type:
t_objects.append(Q(listing_type__exact=ty))
if facilities:
for fc in facilities:
fc_objects.append(Q(property_facilities__exact=fc))
if features:
for ft in features:
ft_objects.append(Q(property_features__exact=ft))
ft_objects.append(Q(community_features__exact=ft))
if not_permitted:
for np in not_permitted:
np_objects.append(Q(not_permitted__exact=np))
# Start with a bare QuerySet
qs = self.get_query_set()
if location:
qs = qs.filter(reduce(operator.or_, l_objects))
if type:
qs = qs.filter(reduce(operator.or_, t_objects))
if facilities:
qs = qs.filter(reduce(operator.or_, fc_objects))
if features:
qs = qs.filter(reduce(operator.or_, ft_objects))
if not_permitted:
qs = qs.filter(reduce(operator.or_, np_objects))
# Use operator's or_ to string together all of your Q objects.
return qs
</code></pre>
<p>Right now I'm not getting very predictable results. Is there something I might be doing wrong? Is there a better way of doing the various OR searches/joins?</p>
http://stackoverflow.com/questions/1875882/best-way-to-ensure-that-at-least-one-field-in-a-model-is-specified0Best way to ensure that at least one field in a model is specified?andrew2009-12-09T18:35:49Z2009-12-09T19:04:30Z
<p>I have a model with four fields that all have null=True defined. I'd like to prevent creation of an entirely null model; I'd rather not use a form validator since I want this to work with the default admin.</p>
<p>If I override the save() method to do a check, what do I raise on an error?</p>
http://stackoverflow.com/questions/320096/django-how-can-i-protect-against-concurrent-modification-of-data-base-entries4Django: How can I protect against concurrent modification of data base entriesBer2008-11-26T09:00:35Z2009-12-09T15:52:14Z
<p>If there a way to protect against concurrent modifications of the same data base entry by two or more users?</p>
<p>It would be acceptable to show an error message to the user performing the second commit/save operation, but data should not be silently overwritten.</p>
<p>I think locking the entry is not an option, as a user might use the "Back" button or simply close his browser, leaving the lock for ever.</p>
http://stackoverflow.com/questions/1873966/how-to-implement-objects-modification-trace0How to implement objects modification traceGhislain Leveque2009-12-09T13:40:19Z2009-12-09T14:22:02Z
<p>Hi there,</p>
<p>With django admin, we have an history of who altered an object and when. I would like to add an "old value", "new value" to this to be able to roll back if needed.</p>
<p>Plus I would like every modification made to my objects (also outside of admin) to be recorded as well.</p>
<p>The final objective is to be able to trace every modification of every object in the models and be able to roll back if needed.</p>
<p>Do you know if such a module already exists.</p>
<p>If not what would be the good start point ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1870108/in-djangos-multi-table-inheritance-can-the-uploadto-argument-be-overridden0In Django's multi-table inheritance, can the upload_to argument be overridden?Thierry Lam2009-12-08T21:52:23Z2009-12-08T22:16:17Z
<p>For the following code:</p>
<pre><code>class Image(models.Model):
alt_name = models.CharField(max_length=200)
url = models.CharField(max_length=255, blank=True)
class Button(Image):
source = models.ImageField(max_length=1024, upload_to='buttons')
class Snapshot(Image):
source = models.ImageField(max_length=1024, upload_to='snapshots')
class Banner(Image):
source = models.ImageField(max_length=1024, upload_to='banners')
</code></pre>
<p>In the above cases, I want to upload each of the different kind to its own upload folder. For example, banners will go under a folder called <code>banners</code> and snapshot will go under <code>snapshots</code>. The above works as expected but I'm repeating the ImageField for each sub-class. Is the above the only way to achieve my goal or is there a DRYer method?</p>
http://stackoverflow.com/questions/869856/how-to-prevent-self-recursive-selection-for-fk-mtm-fields-in-the-django-admin1How to prevent self (recursive) selection for FK / MTM fields in the Django Adminqhyzcjc2009-05-15T17:12:00Z2009-12-08T21:18:57Z
<p>Given a model with ForeignKeyField (FKF) or ManyToManyField (MTMF) fields with a foreignkey to 'self' how can I prevent <em>self</em> (recursive) selection within the Django Admin (admin). </p>
<p>In short, it should be possible to <em>prevent</em> self (recursive) selection of a model instance in the admin. This applies when editing existing instances of a model, not creating new instances.</p>
<p>For example, take the following model for an article in a news app;</p>
<pre><code>class Article(models.Model):
title = models.CharField(max_length=100)
slug = models.SlugField()
related_articles = models.ManyToManyField('self')
</code></pre>
<p>If there are 3 <code>Article</code> instances (title: a1-3), when editing an existing <code>Article</code> instance via the admin the <code>related_articles</code> field is represented by default by a html (multiple)select box which provides a list of ALL articles (<code>Article.objects.all()</code>). The user should only see and be able to select <code>Article</code> instances other than itself, e.g. When editing <code>Article</code> a1, <code>related_articles</code> available to select = a2, a3. </p>
<p>I can currently see 3 potential to ways to do this, in order of decreasing preference;</p>
<ol>
<li>Provide a way to set the queryset providing available choices in the admin form field for the <code>related_articles</code> (via an exclude query filter, e.g. <code>Article.objects.filter(~Q(id__iexact=self.id))</code> to exclude the current instance being edited from the list of related_articles a user can see and select from. Creation/setting of the queryset to use could occur within the constructor (<code>__init__</code>) of a custom <code>Article ModelForm</code>, or, via some kind of dynamic <code>limit_choices_to Model</code> option. This would require a way to grab the instance being edited to use for filtering.</li>
<li>Override the <code>save_model</code> function of the <code>Article Model</code> or <code>ModelAdmin</code> class to check for and remove itself from the <code>related_articles</code> before saving the instance. This still means that admin users can see and select all articles including the instance being edited (for existing articles).</li>
<li>Filter out self references when required for use outside the admin, e.g. templates.</li>
</ol>
<p>The ideal solution (1) is currently possible to do via custom model forms outside of the admin as it's possible to pass in a filtered queryset variable for the instance being edited to the model form constructor. Question is, can you get at the <code>Article</code> instance, i.e. 'self' being edited the admin before the form is created to do the same thing.</p>
<p>It could be I am going about this the wrong way, but if your allowed to define a FKF / MTMF to the same model then there should be a way to have the admin - <em>do the right thing</em> - and prevent a user from selecting itself by excluding it in the list of available choices.</p>
<p><strong>Note:</strong> Solution 2 and 3 are possible to do now and are provided to try and avoid getting these as answers, ideally i'd like to get an answer to solution 1.</p>