active questions tagged python+django-models - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T21:28:19Zhttp://stackoverflow.com/feeds/tag/python+django-modelshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1868765/dwh-style-query-in-django-to-generate-summary-report-at-specified-levels-of-detai0DWH style query in Django to generate summary report at specified levels of detailwebley2009-12-08T18:03:57Z2009-12-08T18:03:57Z
<p>I have a catalog of items like so:</p>
<pre><code>class Items(models.Model):
name=models.CharField()
type=models.ForeignKey(ItemType)
quantity=models.IntegerField()
price=models.DecimalField() # Simplified
[... other fields]
</code></pre>
<p>and it has some attributes governed by:</p>
<pre><code>class ItemAttributes(models.Model):
name=models.CharField()
type=modles.ForeignKey(ItemType)
class ItemAttributeRecords(models.Model):
attribute=ForeignKey(ItemAttributes)
item=ForeignKey(Items)
value=CharField() #Actual model stores ints/bools etc. simplified for SO
</code></pre>
<p>Different types of items have a different set of ItemAttributes eg. a Tshirt will have a size, design and colour but a Towel may only have a size and design.</p>
<p>I'd like to be able to generate a report by specifying specific attributes that I wish to summarize over and/or see details of and generate summary information such as total quantity, average price that would allow me to generate queries at a higher level view.</p>
<p>Let me illustrate with some examples using the clothing illustration above.</p>
<p>On a predefined queryset, I'd like to know what quantity of different coloured items were sold on a per attribute basis, in this case I would specify the order and attribute, <code>[Type, Attr1, Attr2]</code> and details on <code>Attr3</code>. I might also choose to ignore another attribute, say <code>Attr4(Long/Short sleeve)</code>, ie. both long and short seleve types get aggregated. That probably a poor description but the example output is probably a better way to understand.</p>
<p>Lets define that as:</p>
<pre><code>summarize_over= ['Type', 'Attr1', 'Attr2']
detail_on = ['Attr3']
output_values = ['quantity']
ignore = ['Attr4']
Type Attr1(Design) Attr2(Size) Attr3(Colour) Quantity
Tshirt Design A M Blue 10 (3 long/7short sleeve, aggregated)
" " " Brown 20 [....etc....]
" " " Yellow 30
Total 60
Tshirt Design A S Blue 20
" " " Green 20
Total 40
Tshirt Design B M Blue 30
" " " White 30
Total 60
</code></pre>
<p>Attributes such as 'name' (and some others not shown) are ignored in this summary.</p>
<p>A dictionary output would be fine eg. <code>{'type': 'TShirt', 'Attr1': 'Design A', 'Attr2': 'M', 'Quantity':60, 'colour': {'blue':10,'brown':20','yellow':30}}</code></p>
<p>I'm quite new to Python so I'm not really familiar with the idioms, tricks, various methods and such that might make solving this quite easy.</p>
<p>I think this could either be done by 1)raw SQL (but I'm not too familiar with multiple GROUP_BY statements and rolling up the ignored columns), or 2)using the values() method and then looping through them looking for similar attributes. It also occurred to me it might be possible to use sets to solve this but I dont know how to approach it from that angle or if it is in fact better.</p>
<p>So far the pseudocode have come up with so far is along the lines:</p>
<pre><code>for each item in list given by queryset
remove all unwanted attributes and rollup output_values, add to new list
for each attribute in ordered attribute list
group all items in new list that have the same attr into their own dict and add to a list
<repeat nesting the list of dicts>
for each dict in list of dict
flatten each dict and generate output_values
</code></pre>
<p>Thoughts? Suggestions? Code snipets? Better approaches?</p>
http://stackoverflow.com/questions/1226290/django-manytomany-relation-add-error0Django ManyToMany relation add() errorviksit2009-08-04T08:26:19Z2009-12-03T22:26:13Z
<p>Hi all,</p>
<p>I've got a model that looks like this,</p>
<pre><code>class PL(models.Model):
locid = models.AutoField(primary_key=True)
mentionedby = models.ManyToManyField(PRT)
class PRT(models.Model):
tid = ..
</code></pre>
<p>The resulting many to many table in mysql is formed as,</p>
<pre><code>+------------------+------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------------+------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| PL_id | int(11) | NO | MUL | NULL | |
| PRT_id | bigint(64) | NO | MUL | NULL | |
+------------------+------------+------+-----+---------+----------------+
</code></pre>
<p>Now, if pl is an object of PL and prt that of PRT, then doing</p>
<pre><code>pl.mentionedby.add(prt)
</code></pre>
<p>gives me an error</p>
<blockquote>
<p>Incorrect integer value: 'PRT object'
for column 'prt_id' at row 1"</p>
</blockquote>
<p>whereas </p>
<pre><code>pl.mentionedby.add(prt.tid)
</code></pre>
<p>works fine - with one caveat.</p>
<p>I can see all the elements in <code>pl.mentionedby.all()</code>, but I can't go to a mentioned PRT object and see its <code>prt.mentionedby_set.all()</code>.</p>
<p>Does anyone know why this happens? Whats the best way to fix it?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1829216/how-can-i-programmatically-obtain-the-maxlength-of-a-django-model-field1How can I programmatically obtain the max_length of a Django model field?Mat2009-12-01T21:56:14Z2009-12-02T11:10:06Z
<p>Say I have a Django class something like this:</p>
<pre><code>class Person(models.Model):
name = models.CharField(max_length=50)
# ...
</code></pre>
<p>How can I programatically obtain the <code>max_length</code> value for the <code>name</code> field?</p>
http://stackoverflow.com/questions/232435/how-do-i-restrict-foreign-keys-choices-to-related-objects-only-in-django2How do I restrict foreign keys choices to related objects only in djangoJeff Mc2008-10-24T03:52:50Z2009-12-02T00:01:51Z
<p>I have a two way foreign relation similar to the following</p>
<pre><code>class Parent(models.Model):
name = models.CharField(max_length=255)
favoritechild = models.ForeignKey("Child", blank=True, null=True)
class Child(models.Model):
name = models.CharField(max_length=255)
myparent = models.ForeignKey(Parent)
</code></pre>
<p>How do I restrict the choices for Parent.favoritechild to only children whose parent is itself? I tried</p>
<pre><code>class Parent(models.Model):
name = models.CharField(max_length=255)
favoritechild = models.ForeignKey("Child", blank=True, null=True, limit_choices_to = {"myparent": "self"})
</code></pre>
<p>but that causes the admin interface to not list any children.</p>
http://stackoverflow.com/questions/1824667/inheriting-specific-parent-model-attributes-in-foreignkey-self-relationship-in1Inheriting specific parent model attributes in foreignkey->'self' relationship in Djangowebley2009-12-01T08:04:10Z2009-12-01T18:41:37Z
<p>I have a Django model:</p>
<pre><code>class Foo(models.Model):
name = models.CharField(unique=True)
attribute1 = models.FloatField(null=True, blank=True)
attribute2 = models.FloatField(null=True, blank=True)
attribute3 = models.BooleanField(null=True, blank=True)
attribute4 = models.CharField(null=True, blank=True)
inherit = models.ForeignKey('self', related_name='children', null=True, blank=True)
</code></pre>
<p>I'd like that when <code>inherit</code> is not null/blank, that attribute1 and attribute2 etc. are inherited from the parent object <code>inherit</code> so that when I access the attributes I get the values of the parent. I dont care about setting values in the child.</p>
<p>I thought about using model methods eg.:</p>
<pre><code>_attribute1 = models.FloatField(null=True, blank=True)
get_attribute1(self):
if self.inherit:
return self.inherit._attribute1
else:
return self._attribute1
set_attribute1(self, value):
if not self.inherit:
self._attribute1 = value
attribute1 = property(get_attribute1, set_attribute1)
</code></pre>
<p>But it seems ugly since I have about 10 attributes. Is there a better way to do this?</p>
http://stackoverflow.com/questions/1827683/in-python-how-can-i-check-to-see-if-an-object-has-a-value0In python how can I check to see if an object has a value?sico872009-12-01T17:27:40Z2009-12-01T18:39:41Z
<p>Base Account</p>
<pre><code>class BaseAccount(models.Model):
user = models.ForeignKey(User, unique=True)
def __unicode__(self):
"""
Return the unicode representation of this customer, which is the user's
full name, if set, otherwise, the user's username
"""
fn = self.user.get_full_name()
if fn:
return fn
return self.user.username
def user_name(self):
"""
Returns the full name of the related user object
"""
return self.user.get_full_name()
def email(self):
"""
Return the email address of the related user object
"""
return self.user.email
def is_store(self):
#try:
# self.user.is_store
# return True
#except ObjectDoesNotExist:
# return False
return self.user.is_store
def is_professional(self):
try:
self.user.is_professional
return True
except ObjectDoesNotExist:
return False
</code></pre>
<p>Account Class</p>
<pre><code>class Account(BaseAccount):
"""
The account is an extension of the Django user and serves as the profile
object in user.get_profile() for shop purchases and sessions
"""
telephone = models.CharField(max_length=32)
default_address = models.ForeignKey(Address, related_name='billing_account', blank=True, null=True)
security_question = models.ForeignKey(SecurityQuestion)
security_answer = models.CharField(max_length=200)
how_heard = models.CharField("How did you hear about us?", max_length=100)
feedback = models.TextField(blank=True)
opt_in = models.BooleanField("Subscribe to mailing list", help_text="Please tick here if you would like to receive updates from %s" % Site.objects.get_current().name)
temporary = models.BooleanField()
def has_placed_orders(self):
"""
Returns True if the user has placed at least one order, False otherwise
"""
return self.order_set.count() > 0
def get_last_order(self):
"""
Returns the latest order that this customer has placed. If no orders
have been placed, then None is returned
"""
try:
return self.order_set.all().order_by('-date')[0]
except IndexError:
return None
def get_currency(self):
"""
Get the currency for this customer. If global currencies are enabled
(settings.ENABLE_GLOBAL_CURRENCIES) then this function will return
the currency related to their default address, otherwise, it returns
the site default
"""
if settings.ENABLE_GLOBAL_CURRENCIES:
return self.default_address.country.currency
return Currency.get_default_currency()
currency = property(get_currency)
def get_gateway_currency(self):
"""
Get the currency that an order will be put through protx with. If protx
currencies are enabled (settings.ENABLE_PROTX_CURRENCIES), then the
currency will be the same returned by get_currency, otherwise, the
site default is used
"""
if settings.ENABLE_PROTX_CURRENCIES and settings.ENABLE_GLOBAL_CURRENCIES:
return self.currency
return Currency.get_default_currency()
gateway_currency = property(get_gateway_currency)
</code></pre>
<p>Address Class</p>
<pre><code>class Address(models.Model):
"""
This class encapsulates the data required for postage and payment mechanisms
across the site. Each address is associated with a single store account
"""
trade_user = models.BooleanField("Are you a stockist of Neal & Wolf Products", help_text="Please here if you are a Neal & Wolf Stockist")
company_name = models.CharField(max_length=32, blank=True)
line1 = models.CharField(max_length=200)
line2 = models.CharField(max_length=200, blank=True)
line3 = models.CharField(max_length=200, blank=True)
city = models.CharField(max_length=32)
county = models.CharField(max_length=32)
postcode = models.CharField(max_length=12)
country = models.ForeignKey(Country)
account = models.ForeignKey('Account')
class Meta:
"""
Django meta options
verbose_name_plural = "Addresses"
"""
verbose_name_plural = "Addresses"
def __unicode__(self):
"""
The unicode representation of this address, the postcode plus the county
"""
return ', '.join((self.postcode, str(self.county)))
def line_list(self):
"""
Return a list of all of this objects address lines that are not blank,
in the natural order that you'd expect to see them. This is useful for
outputting to a template with the aid of python String.join()
"""
return [val for val in (self.line1, self.line2, self.line3, self.city, self.county, self.postcode, self.country.name) if val]
</code></pre>
<p>About see three classes my question is easy how do i find out whether or not the user, is a trade user(this value is gathered in the Address class)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1826686/the-best-way-to-join-two-dissimilar-mysql-tables-planning-for-django-from-pyth1The best way to join two dissimilar mySQL tables -- planning for django from python.rh0dium2009-12-01T14:52:04Z2009-12-01T17:04:28Z
<p>Hi all,</p>
<pre><code>table a (t_a):
id name last first email state country
0 sklass klass steve sklass@foo.com in uk
1 jabid abid john abid@foo.com ny us
2 jcolle colle john jcolle@foo.com wi us
table b (t_b):
id sn given nick email l c
0 steven klass steve sklass@foo.com in uk
1 john abid - abid_j@foo.com ny us
2 johnny colle john jcolle@foo.com wi us
3 john abid - abid@foo.com ny us
</code></pre>
<p>What is listed above is an (abbreviated) column and row mySQL tables. Looking at the two tables it becomes pretty clear that by strictly looking at the values (id's not looked at) and comparing the matching number of values you would get this value matches.</p>
<pre><code>t_a t_b
0 0
1 3
2 2
- 1
</code></pre>
<p>What I ultimately looking to do is to do this in django — I'm not sure if that matters. In the past I have done this using pure python in which I destroy the old data and just create three new tables. I want to shift away from my implementation (listed below) because the problems I see is that time changes things and people come and go. In the past I have just regenerated the data -- but now I want to keep track of when people leave and don't simply replace (delete) the data. I believe that by doing a SQL update is more elegant and preserves the history. So... </p>
<p><strong><em>I'd like to know how to get this merged answer directly from mySQL (Either a SQL function or the construction of a new table) which merges the data in the following manner. I want to do this using pure SQL (I believe then I can do this in django). So I am looking for a solution which meets the following criteria:</em></strong></p>
<ol>
<li>There is a min_match which defines the minimum number of matches between the two rows of which must be aligned to be considered valid.</li>
<li>While the tables may have different lengths it is a 1-to-1 mapping. In other words many to one may not happen (yet)</li>
</ol>
<p>Now my background is python and for me the simplest way to do this has always been to do a for loop over the shorter of the two tables, which then does a for loop over the other table. looking at the number of matches. In code this looks like this. </p>
<pre><code>t_a = [ ["sklass", "klass", "steve", "sklass@foo.com", "in", "uk", ],
["jabid", "abid", "john", "abid@foo.com", "ny", "us", ],
["jcolle", "colle", "john", "jcolle@foo.com", "wi", "us", ], ]
t_b = [ ["steven", "klass", "steve", "sklass@foo.com", "in", "uk",],
["john", "abid", "abid_j@foo.com", "ny", "us",],
["johnny", "colle", "john", "jcolle@foo.com", "wi", "us",],
["john", "abid", "abid@foo.com", "ny", "us",], ]
min_match = 3
for person_a in t_a:
match = 0
match_pct = 0.0
match_a_index = t_a.index(person_a)
for person_b in t_b:
new_match_count = len(list(set(person_a) & set(person_b)))
if new_match_count > match:
match = new_match_count
match_b_index = t_b.index(person_b)
match_pct = "%.2f" % (float(new_match_count) / \
float(len(set(person_a + person_b))) * 100)
if match >= min_match:
print match_a_index, match_b_index #, match_pct, match
</code></pre>
<p><strong>Updates - And more clarification</strong></p>
<p>The comments beg the question why don't you just join on the email address. I don't necessarily know that the values in a column will match. I <em>am</em> certain that values from a given row in t_a will match values for a row in t_b. I want the highest (most probable) match for a given row in t_a to t_b and only if the number of matches is higher than min_match.</p>
<p>Thanks again</p>
http://stackoverflow.com/questions/502916/django-how-to-create-a-model-dynamically-just-for-testing2Django: How to create a model dynamically just for testingmuhuk2009-02-02T11:35:52Z2009-12-01T16:24:59Z
<p>I have a Django app that requires a <code>settings</code> attribute in the form of:</p>
<pre><code>RELATED_MODELS = ('appname1.modelname1.attribute1',
'appname1.modelname2.attribute2',
'appname2.modelname3.attribute3', ...)
</code></pre>
<p>Then hooks their post_save signal to update some other fixed model depending on the <code>attributeN</code> defined.</p>
<p>I would like to test this behaviour and tests should work even if this app is the only one in the project (except for its own dependencies, no other wrapper app need to be installed). How can I create and attach/register/activate mock models just for the test database? (or is it possible at all?)</p>
<p>Solutions that allow me to use test fixtures would be great.</p>
http://stackoverflow.com/questions/1823372/set-and-use-flags-against-a-users-profile-model-in-django0Set and use flags against a users profile model in Django.Tristan2009-12-01T00:46:41Z2009-12-01T01:49:34Z
<p>I have a simple webapp in Django for an iPhone app.
I want to prompt the user to review our product, but just once. I then don't want to show that prompt again.</p>
<p>So would the best practise way of implementing this to be to add a new entry to the user profile model with a bolean field: "reviewed" - and then set that flag when the user completes the action?</p>
<p>I would then check for that entry in my template and display or not, the prompt.</p>
<p>I've not yet worked with database models, extended the user model, or saved to custom DB fields, so any thoughts or examples on this would be most welcome. I'm a little nervous as my site has live users and I won't want to break the user tables.</p>
http://stackoverflow.com/questions/1791942/django-isvalid-not-working-with-modelformsetfactory0Django is_valid() not working with modelformset_factorymarkkoberlein2009-11-24T18:18:38Z2009-11-30T17:01:55Z
<p>I've created a simple contact form using the modelformset_factory to build the form in the view using the DB model. The issue that I am having is that the <strong>is_valid()</strong> check before the save() is not working. When I submit the form with empty fields it still passes the <strong>is_valid()</strong> and attempts to write to the DB. </p>
<p>I would like the is_valid() check to fail when the fields are empty so that the user can be directed to the form again with an error message. I believe that there is a simple solution to this. Do you know what I am missing in my code?</p>
<p>Thanks.</p>
<p>Code:</p>
<p><strong>models.py</strong></p>
<pre><code>class Response(models.Model):
name = models.CharField(max_length=50,verbose_name='Your Name:')
email = models.CharField(max_length=50,verbose_name='Email:')
phone = models.CharField(max_length=50,verbose_name='Phone Number:')
apt_size = models.CharField(max_length=25,
choices=APT_CHOICES,
verbose_name='Apt Size:')
movein_at= models.DateField(verbose_name='Desired Move-In Date')
community = models.CharField(max_length=50,
choices=COMMUNITY_CHOICES,
verbose_name='Community You Are Interested In:')
referred_by = models.CharField(max_length=50,
choices=REFERRED_CHOICES,
verbose_name='Found Us Where?')
referred_other = models.CharField(blank=True,max_length=50,verbose_name='If Other:')
comments = models.TextField(verbose_name='Comments:')
created_at = models.DateTimeField(auto_now_add=True)
def __unicode__(self):
return self.name
</code></pre>
<p><strong>views.py</strong></p>
<pre><code>from summitpark.contact.models import *
from django.shortcuts import render_to_response
from django.forms.models import modelformset_factory
def form(request):
contact_form_set = modelformset_factory(Response,fields=('name','email','phone',
'apt_size','movein_at',
'community','referred_by',
'comments'),
exclude=('id'))
if request.method == 'POST':
formset = contact_form_set(request.POST)
if formset.is_valid():
formset.save()
return render_to_response('contact/confirm.html')
else:
return render_to_response('contact/form.html',{'formset':formset})
else:
formset = contact_form_set(queryset=Response.objects.none())
return render_to_response('contact/form.html',{'formset':formset}
</code></pre>
<p><strong>Solution:</strong></p>
<pre><code>class BaseContactFormSet(BaseModelFormSet):
def clean(self):
if any(self.errors):
return
for form in self.forms:
name = form['name'].data
if not name:
raise forms.ValidationError, "Please Complete the Required Fields
</code></pre>
http://stackoverflow.com/questions/1816572/getting-unique-foreign-keys-in-django3Getting Unique Foreign Keys in Django?magneticMonster2009-11-29T19:55:34Z2009-11-29T22:53:05Z
<p>Suppose my model looks like this:</p>
<pre><code>class Farm(models.Model):
name = ...
class Tree(models.Model):
farm = models.ForeignKey(Farm)
</code></pre>
<p>...and I get a <code>QuerySet</code> of <code>Tree</code> objects. How do I determine what farms are represented in that <code>QuerySet</code>?</p>
http://stackoverflow.com/questions/1813777/a-puzzle-concerning-q-objects-and-foreign-keys2A puzzle concerning Q objects and Foreign Keysandybak2009-11-28T21:02:02Z2009-11-29T00:03:02Z
<p>I've got a model like this:</p>
<pre><code>class Thing(models.Model):
property1 = models.IntegerField()
property2 = models.IntegerField()
property3 = models.IntegerField()
class Subthing(models.Model):
subproperty = models.IntegerField()
thing = modelsForeignkey(Thing)
main = models.BooleanField()
</code></pre>
<p>I've got a function that is passed a list of filters where each filter is of the form {'type':something, 'value':x}. This function needs to return a set of results ANDing all the filters together:</p>
<pre><code>final_q = Q()
for filter in filters:
q = None
if filter['type'] =='thing-property1':
q = Q(property1=filter['value'])
elif filter['type'] =='thing-property2':
q = Q(property2=filter['value'])
elif filter['type'] =='thing-property2':
q = Q(property3=filter['value'])
if q:
final_q = final_q & q
return Thing.objects.filter(final_q).distinct()
</code></pre>
<p>Each Subthing has a Boolean property 'main'. Every Thing has 1 and only 1 Subthing where main==True.</p>
<p>I now need to add filter that returns all the Things which have a Subthing where main==True and subproperty==filter['value']</p>
<p>Can I do this as part of the Q object I'm constructing? If not how else? The queryset I get before my new filter can be quite large so I would like a method that doesn't involve looping over the results. </p>
http://stackoverflow.com/questions/1807545/app-engine-model-filtering-with-django1App Engine model filtering with Djangonashr rafeeg2009-11-27T08:58:53Z2009-11-27T10:18:37Z
<p>hi i am using django app engine patch i have set up a simple model as follows</p>
<pre><code>class Intake(db.Model):
intake=db.StringProperty(multiline=False, required=True)
#@permerlink
def get_absolute_url(self):
return "/timekeeper/%s/" % self.intake
class Meta:
db_table = "Intake"
verbose_name_plural = "Intakes"
ordering = ['intake']
</code></pre>
<p>i am using the following views to check if some thing exist in data base and add to database</p>
<pre><code>from ragendja.template import render_to_response
from django.http import HttpResponse, Http404
from google.appengine.ext import db
from timekeeper.forms import *
from timekeeper.models import *
def checkintake(request, key):
intake = Intake.all().filter('intake=',key).count()
if intake<1:
return HttpResponse('ok')
else:
return HttpResponse('Exist in database')
def addintake(request,key):
if Intake.all().filter('intake=',key).count()>1:
return HttpResponse('Item already Exist in Database')
else:
data = Intake(intake=cleaned_data[key])
data.put()
return HttpResponse('Ok')
</code></pre>
<p>i can add to database with no problem (when i do a <code>Intake.all().count()</code> it increases) but when i check if the key exist in the database by filtering i am getting a count of zero any one have any idea why i am not able to filter by keys ?</p>
http://stackoverflow.com/questions/1804573/appengine-reference-order0Appengine reference ordermaciag.artur..pl2009-11-26T16:16:21Z2009-11-26T16:25:24Z
<p>I have declared models in AppEngine's models.py:</p>
<pre><code>class Post(db.Model):
topic = db.ReferenceProperty(Topic, collection_name='posts', verbose_name=_('Topic'))
(..)
class Topic(db.Model):
(..)
last_post = db.ReferenceProperty(Post, collection_name='last_topic_post')
</code></pre>
<p>Problem is ReferenceProperty must have Model class but Topic class is undeclared when declaring Post. The same will happen with Post class after switch. How to solve this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1793957/how-to-make-uniques-in-django-models-and-also-index-a-column-in-django4How to make uniques in Django Models? And also index a column in Django.alex2009-11-25T00:40:54Z2009-11-25T03:36:55Z
<p>This is my simple Django database model. It's for a 5-star rating system.</p>
<pre><code>class Rating(models.Model):
content = models.OneToOneField(Content, primary_key=True)
ip = models.CharField(max_length=200, blank=True)
rating = models.IntegerField(default=0)
</code></pre>
<p>As you can see, it is linked to "Content", which is the table for my documents.
My question is:</p>
<ul>
<li>How do I make content+ip unique...so
that it multiple content is okay, but
multiple content AND IP is not okay
(do not want the user to rate twice).</li>
<li>How do I create a data-base index for content and ip...because I will always be selecting those (to compare if it is already in the database).</li>
</ul>
http://stackoverflow.com/questions/1789191/django-import-tables-as-models0Django, Import tables as modelsmnml2009-11-24T10:28:24Z2009-11-24T13:32:06Z
<p>I would like to know if it's possible to use django over existing db tables that defines the models.</p>
<p>Instead of defining models in order to create db tables</p>
http://stackoverflow.com/questions/1779567/how-do-i-save-to-a-field-that-is-specified-in-a-variable0How do I save to a field that is specified in a variable?Baresi2009-11-22T18:45:55Z2009-11-22T18:49:27Z
<p>I want to do something like this:</p>
<pre>
# models.py
class Model(models.Model):
name_in_my_model = models.CharField(max_length=100)
# later
fieldname = 'name_in_my_model'
# this is what I want to do somehow:
obj = Model.objects.get(pk=1)
obj.fieldname = 'new name'
obj.save()
</pre>
<p>Is this possible? I'm making a reusable application, and the user needs to specify a name of a field that is going to be updated by my app.</p>
http://stackoverflow.com/questions/1773504/how-to-count-and-display-objects-in-relation-manytomany-in-django0How to count and display objects in relation ManyToMany in DjangoMatthew2009-11-20T21:57:48Z2009-11-20T22:03:22Z
<p>Hi!</p>
<p>I have a simple model with news and categories:</p>
<pre><code>class Category(models.Model):
name = models.CharField()
slug = models.SlugField()
class News(models.Model):
category = models.ManyToManyField(Category)
title = models.CharField()
slug = models.SlugField()
text = models.TextField()
date = models.DateTimeField()
</code></pre>
<p>I want to count news for each category and display it on the website, like this:</p>
<pre><code>Sport (5)
School (4)
Films (6)
Computer (2)
etc...
</code></pre>
<p>How can I do this??</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1767506/how-to-insert-a-infomation-on-a-table-in-django0how to insert a infomation on a table in DjangoDaniel Garcia2009-11-20T00:06:51Z2009-11-20T00:54:57Z
<p>This is my form on models.py</p>
<pre><code>class ItemForm(forms.Form):
itemname = forms.CharField(max_length=100)
itemwording = forms.CharField(max_length=100)
notes = forms.CharField()
abundance = forms.IntegerField(max_value=10)
collunit = forms.CharField(max_length=50)
litref = forms.CharField(max_length=100)
litkey = forms.IntegerField(max_value=10)
litrefdetail = forms.CharField()
collcode = forms.CharField(max_length=15)
specimenno = forms.CharField(max_length=20)
speciesid = forms.IntegerField(max_value=10)
sorder = forms.CharField(max_length=50)
disabled = forms.BooleanField(required = True)
</code></pre>
<p>This is my view.py</p>
<pre><code> def additem(request):
from django.db import connection, transaction
cursor = connection.cursor()
if request.method == 'POST':
form = ItemForm(request.POST)
if form.is_valid():
itemnameNEW = form.cleaned_data['itemname']
itemwordingNEW = form.cleaned_data['itemwording']
notesNEW = form.cleaned_data['notes']
abundanceNEW = form.cleaned_data['abundance']
collunitNEW = form.cleaned_data['collunit']
litrefNEW = form.cleaned_data['litref']
litkeyNEW = form.cleaned_data['litkey']
litrefdetailNEW = form.cleaned_data['litrefdetail']
collcodeNEW = form.cleaned_data['collcode']
specimennoNEW = form.cleaned_data['specimenno']
speciesidNEW = form.cleaned_data['speciesid']
sorderNEW = form.cleaned_data['sorder']
disabledNEW = form.cleaned_data['disabled']
newitem = Item(itemname=itemnameNEW, itemwording=itemwordingNEW, notes=notesNEW, abundance=abundanceNEW, collunit=collunitNEW, litref=litrefNEW, litkey=litkeyNEW, litrefdetail=litrefdetailNEW, collcode=collcodeNEW,specimenno=specimennoNEW, speciesid=speciesidNEW,sorder=sorderNEW,disabled=disabledNEW )
newitem.save();
return HttpResponseRedirect('/jalo/')
else:
return HttpResponseRedirect('/nojalo/')
else:
form = ItemForm()
return render_to_response('tbl/additem.html', {'form': form})
</code></pre>
<p>When i submit the form i get </p>
<pre><code> IntegrityError at /login/manageitem/additem/
duplicate key value violates unique constraint "tbl_item_pkey"
</code></pre>
<p>I just want to insert information on a table using django</p>
http://stackoverflow.com/questions/910169/resize-fields-in-django-admin1Resize fields in Django AdminAndor2009-05-26T11:16:16Z2009-11-16T19:24:46Z
<p>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, also 6 or 8 chars wide, and then the edit box goes up to 15 or 20 chars.</p>
<p>How can I tell the admin how wide a textbox should be, or the heigth of a TextField edit box?</p>
http://stackoverflow.com/questions/1737017/django-autonow-and-autonowadd0Django auto_now and auto_now_addPaul Tarjan2009-11-15T08:47:56Z2009-11-15T17:19:56Z
<p>For Django 1.1. </p>
<p>I have this in my models.py:</p>
<pre><code>class User(models.Model):
created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
</code></pre>
<p>When updating a row I get :</p>
<pre><code>[Sun Nov 15 02:18:12 2009] [error] /home/ptarjan/projects/twitter-meme/django/db/backends/mysql/base.py:84: Warning: Column 'created' cannot be null
[Sun Nov 15 02:18:12 2009] [error] return self.cursor.execute(query, args)
</code></pre>
<p>the relevant part of my db is:</p>
<pre><code> `created` datetime NOT NULL,
`modified` datetime NOT NULL,
</code></pre>
<p>Is this cause for concern?</p>
<p>Side question: in my admin tool, those 2 fields aren't showing up. Is that expected?</p>
http://stackoverflow.com/questions/1734147/problem-getting-started-with-geodjango0Problem getting started with GeoDjangoakv2009-11-14T12:46:13Z2009-11-14T14:23:46Z
<p>As soon as I add "from django.contrib.gis.db import models" instead of "from django.db import models", Django stops recognizing the app and gives this error:</p>
<pre><code>Error: App with label location could not be found. Are you sure your INSTALLED_APPS setting is correct?
</code></pre>
<p>The error goes away as soon as I comment out "from django.contrib.gis.db import models"...</p>
<p>I have added "django.contrib.gis" and the "location" app to the INSTALLED_APPS setting correctly. </p>
<p>Any clues why this is happening? I am running using Django v1.1.1 final, on my windows laptop.</p>
http://stackoverflow.com/questions/1731346/how-to-get-two-random-records-with-django1How to get two random records with DjangoMatt McCormick2009-11-13T19:27:42Z2009-11-13T19:31:24Z
<p>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.</p>
http://stackoverflow.com/questions/1729335/can-django-models-use-mysql-functions2Can Django models use MySQL functions?Tony2009-11-13T13:56:25Z2009-11-13T16:08:51Z
<p>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 produce something like the following:</p>
<p>On model load: SELECT AES_DECRYPT(fieldname, password) FROM tablename</p>
<p>On model save: INSERT INTO tablename VALUES (AES_ENCRYPT(userinput, password))</p>
http://stackoverflow.com/questions/1724569/dynamically-display-field-values-in-django-template-object-x1Dynamically Display field values in Django template (object.x)Issy2009-11-12T19:02:24Z2009-11-12T23:11:20Z
<p>Hi Guys,</p>
<p>I am currently working on an app that uses custom annotate querysets. Currently i have 2 urls setup, but i would need one for each field that the users would like to summarize data for. This could be configured manually, but it would violate DRY! I would basically have +-8 urls that basically do the same thing. </p>
<p>So here is what i did,</p>
<ol>
<li>I have a created custom model manager</li>
<li>I have a view</li>
<li>I have the URLS configured</li>
</ol>
<p>All of the above works.</p>
<p>So basically the URL config passes to the view the name of the field to annotate by (group by for SQL folks), the view does some additional processing and runs the custom model manager based on the field that was passed to it. </p>
<p>The URL looks like this:</p>
<pre><code>url('^(?P<field>[\w-]+)/(?P<year>\d{4})/(?P<month>\d+)/(?P<day>\d+)/$','by_subtype', name='chart_link'),
</code></pre>
<p>The <em>field</em> is the column in db the that is used when the queryset is actually run. It is passed from the view, to my custom manager. Below is an example of the code from the manager:</p>
<pre><code>return self.filter(start_date_time__year=year).filter(start_date_time__month=month).filter(start_date_time__day=day).values(field).annotate(Count(field))
</code></pre>
<p>In addition, i pass the value of <em>field</em> as context variable. This is used to dynamically build the links. However the problem is actually looping through the query set and displaying the data.</p>
<p>So your typical template code looks like this:</p>
<pre><code>{% for object in object_list %}
{{ object.sub_type }} : {{ object.sub_type__count|intcomma }}
{% endfor %}
</code></pre>
<p>Basically you have to hard code the field to diplay (i.e object.x), is there anyway to dynamically assign this? i.e
if field = business
then in the template it should automatically process: </p>
<pre><code>{{ object.business }}
</code></pre>
<p>Can this be done? Or would i need to create several URLS? Or is there a better way to achieve the same result, a single view and url handling queries dynamically.</p>
<p>You can find the code over at github, the template part is now working using this snippet: <a href="http://www.djangosnippets.org/snippets/1412/" rel="nofollow">http://www.djangosnippets.org/snippets/1412/</a> So if you come across this later and want to do something similar have a look at the code snippet at github. : <a href="http://gist.github.com/233262" rel="nofollow">http://gist.github.com/233262</a></p>
http://stackoverflow.com/questions/1720157/diference-between-appenginedjango-basemodel-and-db-model1Diference between appengine_django BaseModel and db.ModelLuís Marques2009-11-12T05:49:32Z2009-11-12T13:15:22Z
<p>I'm using the Google App Engine helper for Django. This helper includes the following lines in its template:</p>
<pre><code>from appengine_django.models import BaseModel
from google.appengine.ext import db
# Create your models here.
</code></pre>
<p>Should I derive my models from db.Model or from BaseModel?
I've tried both and I don't see any difference. Both seem to work, even when using Django forms. Is there any reason not to delete the BaseModel import and derive all models from db.Model?</p>
http://stackoverflow.com/questions/241250/single-table-inheritance-in-django1Single Table Inheritance in Djangothaiyoshi2008-10-27T20:18:08Z2009-11-12T08:25:21Z
<p>Is there explicit support for Single Table Inheritance in Django? Last I heard, the feature was still under development and debate. </p>
<p>Are there libraries/hacks I can use in the meantime to capture the basic behavior? I have a hierarchy that mixes different objects. The canonical example of a corporation structure with an Employee class, subclasses for types of employees, and a manager_id (parent_id) would be a good approximation of the problem I am solving. </p>
<p>In my case, I would like to represent the idea that an employee can manage other employees while being managed by a different employee. There are not separate classes for Manager and Worker, which makes this hard to spread across tables. Sub-classes would represent types of employees-programmers, accountants, sales, etc and would be independent of who supervises who (OK, I guess it's no longer a typical corporation in some respect). </p>
http://stackoverflow.com/questions/1708780/python-django-model-overriding-the-cleaned-data1Python/Django Model overriding the cleaned datasico872009-11-10T15:25:55Z2009-11-10T15:44:02Z
<p>Hello I am currently working on a django project, in one of my Models I have a file upload and image upload, with the parameters of these two fields both are set to blank=True, however there is a stipulatation with this and it is that field can only be blank if one of the two is not, so for example, if the imagefield is complete then the user does not have to upload a file, and if the filefield is complete then user does not need to upload an image.</p>
<p>My problem is I am struggling to figure out the logic, this is within the admin section so I understand I will have the overwrite the clean data. Can anyone help?</p>
http://stackoverflow.com/questions/1697702/how-to-pass-initial-parameter-to-djangos-modelform-instance0How to pass initial parameter to django's ModelForm instance?kender2009-11-08T19:54:40Z2009-11-08T20:11:39Z
<p>The particular case I have is like this:</p>
<p>I have a Transaction model, with fields: <code>from</code>, <code>to</code> (both are <code>ForeignKey</code>s to <code>auth.User</code> model) and <code>amount</code>. In my form, I'd like to present the user 2 fields to fill in: <code>amount</code> and <code>from</code> (<code>to</code> will be automaticly set to current user in a view function).</p>
<p>Default widget to present a <code>ForeignKey</code> is a select-box. But what I want to get there, is limit the choices to the <code>user.peers</code> queryset members only (so people can only register transactions with their peers and don't get flooded with all system users).</p>
<p>I tried to change the ModelForm to something like this:</p>
<pre><code>class AddTransaction(forms.ModelForm):
from = ModelChoiceField(user.peers)
amount = forms.CharField(label = 'How much?')
class Meta:
model = models.Transaction
</code></pre>
<p>But it seems I have to pass the queryset of choices for <code>ModelChoiceField</code> right here - where I don't have an access to the web <code>request.user</code> object.</p>
<p>How can I limit the choices in a form to the user-dependent ones? </p>
http://stackoverflow.com/questions/1381423/model-inheritance-approach-with-djangos-orm1Model inheritance approach with Django's ORMPhilip Möjbro2009-09-04T20:36:55Z2009-11-08T13:00:34Z
<p>Hello,</p>
<p>I want to store events in a web application I am fooling around with and I feel quite unsure about the pros and cons of each respective approach - using inheritance extensively or in a more modest manner.</p>
<p>Example:</p>
<pre><code>class Event(models.Model):
moment = models.DateTimeField()
class UserEvent(Event):
user = models.ForeignKey(User)
class Meta:
abstract = True
class UserRegistrationEvent(UserEvent):
pass # Nothing to add really, the name of the class indicates it's type
class UserCancellationEvent(UserEvent):
reason = models.CharField()
</code></pre>
<p>It feels like I'm creating database tables like crazy. It would require alot of joins to select things out and might complicate querying. But it's design feels nice, I think.</p>
<p>Would it be more reasonable to use a "flatter" model that just has more fields?</p>
<pre><code>class Event(models.Model):
moment = models.DateTimeField()
user = models.ForeignKey(User, blank=True, null=True)
type = models.CharField() # 'Registration', 'Cancellation' ...
reason = models.CharField(blank=True, null=True)
</code></pre>
<p>Thanks for your comments on this, anyone.</p>
<p>Philip</p>