active questions tagged django-models - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T18:39:20Zhttp://stackoverflow.com/feeds/tag/django-modelshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804955/django-simple-relation0django simple relationSimon2009-11-26T17:50:46Z2009-11-26T17:50:46Z
<p>Hi all,</p>
<p>I have 2 table in my db</p>
<p>Table : users</p>
<p>id - primary key
username
password
...
address_id</p>
<p>Table : address</p>
<p>id - primary key
address </p>
<p>I want to show this address in User List </p>
<p>username , address ( in address table ) </p>
<p>How can i do that ?</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/1803993/django-orm-dynamic-columns-from-reference-model-in-resultset0Django ORM: dynamic columns from reference model in resultsetTinjaNurtle2009-11-26T14:30:06Z2009-11-26T16:03:08Z
<p>Creating an app to track time off accrual. Users have days and days have types like "Vacation" or "Sick"</p>
<p>Models:</p>
<p>DayType</p>
<ul>
<li>Name</li>
</ul>
<p>UserDay</p>
<ul>
<li>Date</li>
<li>DayType (fk to DayType)</li>
<li>Value (+ for accrual, - for day taken)</li>
<li>Note</li>
<li>Total</li>
</ul>
<p>I'm trying to generate the following resultset expanding the daytypes across columns. Is this possible in the ORM, or do I have to build this in code?</p>
<p><img src="http://imgur.com/P5Uce.png" alt="alt text"></p>
http://stackoverflow.com/questions/1804132/django-verbose-name-of-related-model-not-translated0Django: Verbose name of related model not translated Sam2009-11-26T14:52:31Z2009-11-26T14:52:31Z
<p>Hi all,</p>
<p>I am using ugettext to translate a Category model's verbose_name. This works fine in admin when adding new objects, however, when using Category as in a one-to-many relationship with Post, the Category's verbose_name is neither translated in the list filter nor the change form of Post. </p>
<p>How can I correct this?</p>
http://stackoverflow.com/questions/1396264/how-to-sort-by-annotated-count-in-a-related-model-in-django1How to sort by annotated Count() in a related model in DjangoJens Alm2009-09-08T20:49:59Z2009-11-25T20:17:40Z
<p>Hi, I'm building a food logging database in Django and I've got a query related problem.</p>
<p>I've set up my models to include (among other things) a Food model connected to the User model through an M2M-field "consumer" via the Consumption model. The Food model describes food dishes and the Consumption model describes a user's consumption of Food (date, amount, etc).</p>
<pre><code>class Food(models.Model):
food_name = models.CharField(max_length=30)
consumer = models.ManyToManyField("User", through=Consumption)
class Consumption(models.Model):
food = models.ForeignKey("Food")
user = models.ForeignKey("User")
</code></pre>
<p>I want to create a query that returns all Food objects ordered by the number of times that Food object appears in the Consumption table for that user (the number of times the user has consumed the food).</p>
<p>I'm trying something in the line of:</p>
<pre><code>Food.objects.all().annotate(consumption_times = Count(consumer)).order_by('consumption_times')`
</code></pre>
<p>But this will of course count all Consumption objects related to the Food object, not just the ones associated with the user. Do I need to change my models or am I just missing something obvious in the queries?</p>
<p>This is a pretty time-critical operation (among other things, it's used to fill an Autocomplete field in the Frontend) and the Food table has a couple of thousand entries, so I'd rather do the sorting in the database end, rather than doing the brute force method and iterate over the results doing:</p>
<pre><code>Consumption.objects.filter(food=food, user=user).count()
</code></pre>
<p>and then using python sort to sort them. I don't think that method would scale very well as the user base increases and I want to design the database as future proof as I can from the start.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1680211/django-limitchoicesto-at-circular-relation0Django limit_choices_to at circular relationSam2009-11-05T12:21:36Z2009-11-25T09:26:40Z
<p>Hi,</p>
<p>I've implemented a circular OneToMany relationship at a Django model and tried to use the limit_choices_to option at this very same class.</p>
<p>I can syncdb without any error or warning but the limit is not being respected.
Using shell I'm able to save and at admin I receive the error message:</p>
<blockquote>
<p>"Join on field 'type' not permitted.
Did you misspell 'neq' for the lookup
type?"</p>
</blockquote>
<pre><code>class AdministrativeArea(models.Model):
type = models.CharField(max_length=1, choices=choices.ADMIN_AREA_TYPES)
name = models.CharField(max_length=60, unique=True)
parent = models.ForeignKey('AdministrativeArea',
null=True,
blank=True,
limit_choices_to = Q(type__neq='p') & Q(type__neq=type)
)
</code></pre>
<p>The basic idea for the limit_choices_to option is to guarantee that any type "p" cannot be parent ofr any other AdministrativeArea AND the parent cannot be of the same type as the current AdministrativeArea type.</p>
<p>I'm pretty new to Django ... what am I missing?</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/1791942/django-isvalid-not-working-with-modelformsetfactory0Django is_valid() not working with modelformset_factoryMark Koberlein2009-11-24T18:18:38Z2009-11-24T21:15:28Z
<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>
http://stackoverflow.com/questions/1790114/django-altering-model-fields-from-admin-views0Django: Altering model fields from admin views Sam2009-11-24T13:35:08Z2009-11-24T14:11:29Z
<p>Hi all,</p>
<p>I would like to know how you can change a model's field's parameters, not during model initialisation, but from a model admin. For instance, I would like to make either field "foo" or "bar" optional, according on a get parameter (wondering about the correct solution for the # PSEUDO CODE bit):</p>
<pre><code>def add_view(self, request, form_url='', extra_context=None):
if request.GET.get('object_type', 'foo') == 'foo':
# PSEUDO CODE:
model.fields.foo.blank = False
model.fields.bar.blank = True
else:
# PSEUDO CODE:
model.fields.foo.blank = True
model.fields.bar.blank = False
return super(FileNodeAdmin, self).add_view(request, form_url, extra_context)
</code></pre>
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/1789573/column-field-level-permissions-in-django-admin-site0Column/field level permissions in Django admin site?ccnet2009-11-24T11:48:59Z2009-11-24T11:59:22Z
<p>Is it possible to implement column level permissions per user in the Django admin site?</p>
<p>Its a small project and I only need two groups of permissions.</p>
<p>In the docs I cant find anything out of the box however I was wondering if its possible to create two admin sites and use separate ModelAdmin.exclude or ModelAdmin.fields for each one? I know it's probably a stretch though.</p>
<p>I tried looking around too but I only found row level permissions (django-granular-permissions).</p>
<p>I know it can be done quite easily in my own views by storing the permissions but I was wondering if there was a way to use the admin site or if there is another app out there.</p>
http://stackoverflow.com/questions/1782622/django-charfield-to-string0Django CharField To StringDavidM2009-11-23T11:40:16Z2009-11-23T15:25:28Z
<p>Hello All,</p>
<p>Hopefully a really simple one, possible even stupid!</p>
<p>I'm building a tagging system in Django and would like to allow spaces and other characters in the tag name for display but filter them out and use lower case when matching names etc. </p>
<p>To that end I have added a field to my Tag model as so:</p>
<pre><code>class Tag(models.Model):
name = models.CharField(max_length=200, unique=True)
matchname = re.sub("\W+" , "", name.lower())
</code></pre>
<p>However I am running into a problem, the CharField is not a string and I cannot for the life of me find out how to convert it to one!</p>
<p>Any help (plus comments on the general approach) would be much appreciated!</p>
<p>Thanks,<br>
Dave</p>
<p>Edit: Great answers one and all. Have marked Dave Webb's as it explains the main thing I was doing wrong, Doh! Although I will be using Ferran's answer as it makes sense to be able to use Djangos built in querys on the matchname, plus it means I can make both unique to ensure no repeats with different caps etc.</p>
<p>Thanks guys, if I could mark all as answers I would as they are all valid and potentially useful for others in the same situation. Up votes all round!</p>
<p>(also should I leave this here or add another post for it?)</p>
http://stackoverflow.com/questions/1779884/unique-field-values-and-manytomany-relationships0Unique field values and ManyToMany relationshipsbuken2009-11-22T20:29:02Z2009-11-22T20:31:50Z
<p>Let's say I have a class structure that is defined below:</p>
<pre><code>Class Item(models.Model):
...
price = models.IntegerField()
upc = models.IntegerField()
...
Class Store(models.Model):
...
inventory = models.ManyToManyField(Item)
...
</code></pre>
<p>Basically I want store models to have access to the same inventory. However the value of price in the item model will be unique for each store that links to it. e.g. I might have an instance of the item model called bike that all stores will have access to. For all the stores the upc (barcode) will be the same, but the price will be different for each store. Is there any way to implement that relationship using this class structure?</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/1778295/interacting-with-external-db-via-django0Interacting with external DB via DjangoTerry J2009-11-22T09:47:22Z2009-11-22T10:51:16Z
<p>I'm working on a Django app that interacts with an existing database (think ERP/transaction type data) to perform analysis. There will be minimal/no updating of the existing database mainly reading data in. Its just a simple small setup so no replication etc. issues to think about re. updating.</p>
<p>The analysis would result in new records created within the Django Model.</p>
<p>Currently the existing DB runs on PostgreSQL.</p>
<p>I am aware of Alex Gaynor's GSOC multidb code which, from what I gather is ticket #1142 which has no patch yet to trunk. </p>
<p>So from what I gather there are three options I can see:</p>
<p>1) Point Django db to the same db as the ERP and let it create the tables it needs within it (all the ERP tables have a prefix so there would be no collision) however this strikes me as hackey and a recipe for disaster.</p>
<p>2) Create a new db for Django and automatically copy over the required tables. Better but I cant update, thought I can probably live with this.</p>
<p>3) Try out the multidb patch.</p>
<p>Are there other better ideas out there? I'm leaning towards at least trying out the multidb patch but I'm a little worried about stability and forwards compatibility. </p>
http://stackoverflow.com/questions/1771594/django-is-there-an-in-lookup-for-querying-model-objects-like-there-is-for-sqlal0Django: Is there an in_ lookup for querying model objects like there is for SQLAlchemy queries?kchau2009-11-20T16:21:07Z2009-11-21T10:00:52Z
<p>I'm trying to accomplish something like this:</p>
<pre><code> userSelectionIDs = [pref.selectionID for pref in UserColumnSelectionPreference.objects.filter(user=reqUser).all()]
selections = ColumnSelections.objects.filter(id.in_(userSelectionIDs)).filter(type=2).all()
</code></pre>
<p>Or, is there a better way for me to get that set of objects?</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/1772841/django-how-to-determine-if-model-class-is-abstract2Django - how to determine if model class is abstractNagyman2009-11-20T19:52:01Z2009-11-20T19:57:16Z
<p>If a django model is made abstract, like below, is there a way to inspect the class to determine that it is abstract?</p>
<pre><code>class MyModel(models.Model):
class Meta:
abstract = True
</code></pre>
<p>I would expect that I could examine MyModel.Meta.abstract, but according to Django docs:</p>
<blockquote>
<p>Django does make one adjustment to the Meta class of an abstract base class: before installing the Meta attribute, <strong>it sets abstract=False</strong>. This means that children of abstract base classes don't automatically become abstract classes themselves.</p>
</blockquote>
<p>Any ideas? Thanks!</p>
http://stackoverflow.com/questions/1664217/how-can-i-get-a-list-of-objects-from-a-postgresql-view-table-to-display0How can i get a list of objects from a postgresql view table to display.Daniel Garcia2009-11-02T22:46:14Z2009-11-20T14:40:52Z
<p>this is a model of the view table.</p>
<pre><code>class QryDescChar(models.Model):
iid_id = models.IntegerField()
cid_id = models.IntegerField()
cs = models.CharField(max_length=10)
cid = models.IntegerField()
charname = models.CharField(max_length=50)
class Meta:
db_table = u'qry_desc_char'
</code></pre>
<p>this is the SQL i use to create the table</p>
<pre><code>CREATE VIEW qry_desc_char as
SELECT
tbl_desc.iid_id,
tbl_desc.cid_id,
tbl_desc.cs,
tbl_char.cid,
tbl_char.charname
FROM tbl_desC,tbl_char
WHERE tbl_desc.cid_id = tbl_char.cid;
</code></pre>
<p><hr /></p>
<p>i dont know if i need a function in models or views or both. i want to get a list of objects from that database to display it. This might be easy but im new at Django and python so i having some problems</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/1762174/need-help-with-django-model-design-manytomanyfield-through-an-intermediate-mod0Need help with Django model design, ManyToManyField "through" an intermediate model and its implications for uniquenesschefsmart2009-11-19T10:00:23Z2009-11-19T10:40:07Z
<p>I have the following Django models: - </p>
<pre><code>class Company(models.Model):
name = models.CharField(max_length=50)
is_active = models.BooleanField(db_index=True)
class Phase(models.Model):
company = models.ForeignKey(Company)
name = models.CharField(max_length=50)
is_active = models.BooleanField(db_index=True)
class Process(models.Model):
company = models.ForeignKey(Company)
name = models.CharField(max_length=50)
phases = models.ManyToManyField(Phase, through='ProcessPhase')
is_active = models.BooleanField(db_index=True)
class ProcessPhase(models.Model):
process = models.ForeignKey(Process)
phase = models.ForeignKey(Phase)
order = models.PositiveIntegerField(help_text="At what step of your process will this phase occur?", unique=True)
</code></pre>
<p>A "company" has its "processes" and "phases". A process (of a company) is comprised of one or more phases (of the company). Each phase associated with a process has an "order". The requirement is that: - </p>
<ol>
<li>in a particular process of a company, a phase can appear only once;</li>
<li>also "phase A" and "phase B" in a process cannot have the same order.</li>
</ol>
<p>So I need to know: - </p>
<p>a) how to specify some "unique"s in the model definition to fulfill the above requirements;</p>
<p>b) what uniqueness, if any, is automatically implied by a ManyToManyField?</p>
http://stackoverflow.com/questions/1759558/how-can-i-use-conditional-sorting-at-django-queries0How can I use conditional sorting at Django queries?Boolean2009-11-18T22:19:42Z2009-11-19T02:39:39Z
<p>I'm implementing a basic forum app. I would like to sort the questions by their last reply time.
I have the following line:</p>
<pre><code> questions = Question.objects.filter(deleted=False).order_by("last_comment__created_at")
</code></pre>
<p>However, this query ignores the new questions with no answers. What would be the best way to fix this without creating a new field at Question model?</p>
http://stackoverflow.com/questions/1757841/django-database-query-return-the-most-recent-three-objects0Django database query - return the most recent three objectsRichard2009-11-18T17:51:14Z2009-11-18T17:53:09Z
<p>Hi </p>
<p>This can't be hard, but... I just need to get the most recent three objects added to my database field. </p>
<p>So, query with reverse ID ordering, maximum three objects. </p>
<p>Been fiddling round with </p>
<pre><code>Records.objects.order_by(-id)[:3]
Records.objects.all[:3]
</code></pre>
<p>and including an if clause to check whether there are actually three objects:</p>
<pre><code>num_maps = Records.objects.count()
if (num_maps > 3): # etc...
</code></pre>
<p>and using reverse() and filter() for a while...</p>
<p>But just can't figure it out! Nothing I do gives the right result and using num_maps feels pretty inelegant. Not getting much joy from the documentation. Can anyone help?!</p>
http://stackoverflow.com/questions/1752585/whats-the-best-way-to-create-a-history-type-model-in-django2What's the best way to create a 'history' type model in django?hora2009-11-17T23:23:02Z2009-11-18T16:24:50Z
<p>I'd like to create a feature for my Django app similar to Django admin's 'Recent Actions', in order to store history information on my other models.</p>
<p>For example say I have two models called Book and Author. I want to have a third model that stores information such as what action was performed on a given object in a model (add, modify, delete, etc.) by who and when.</p>
<p>Who, when and the action are easy, I'm just unsure about how to store information regarding what object the action was performed on.</p>
<p>My initial idea was to have a 'Transactions' model that would store this information, and both my Book and Author models could have a ForeignKey relation to it. However, if I delete the given book or author, then its transaction history is also deleted and I have no record that this object was indeed deleted.</p>
<p>I've been thinking of other possible solutions, but I thought I'd ask for more experienced opinions here first. How should I approach this problem and what are some reasonable solutions to it?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1756190/django-filefield-url-not-relative1Django FileField url not relativeLuís Marques2009-11-18T13:58:54Z2009-11-18T15:04:51Z
<p>I have something like:</p>
<pre><code>MEDIA_ROOT = '/home/httpd/foo/media/'
MEDIA_URL = 'http://www.example.org/media/'
</code></pre>
<p>(...)</p>
<pre><code>file = models.FileField(upload_to='test')
</code></pre>
<p>When I create an object with that field in the admin page Django stores in the DB the full file path, like: "/home/httpd/foo/media/test/myfile.pdf". This is contrary to what says in the <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.FileField" rel="nofollow">docs</a>.</p>
<blockquote>
<p>All that will be stored in your
database is a path to the file
(relative to MEDIA_ROOT).</p>
</blockquote>
<p>When I use the file.url in a template I get something like:</p>
<blockquote>
<p><a href="http://www.example.org/home/httpd/foo/media/test/myfile.pdf" rel="nofollow">http://www.example.org/home/httpd/foo/media/test/myfile.pdf</a></p>
</blockquote>
<p>instead of what I would like:</p>
<blockquote>
<p><a href="http://www.example.org/media/test/myfile.pdf" rel="nofollow">http://www.example.org/media/test/myfile.pdf</a></p>
</blockquote>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1755591/many-to-many-relationships-with-additional-data-on-the-relationship0Many to many relationships with additional data on the relationship.Simon Callan2009-11-18T12:16:52Z2009-11-18T14:32:11Z
<p>I'm trying to create a django database that records all my comic purchases, and I've hit a few problems. I'm trying to model the relationship between a comic issue and the artists that work on it.</p>
<p>A comic issue has one or more artists working on the issue, and an artist will work on more than a single issue. In addition, the artist has a role relating to what they did on the comic – creator (all the work on that issue), writer (wrote the script), drawer (drew the complete comic), pencils, inks, colours or text, and there may be several artists in a given role.</p>
<p>This gives me a database model like: <img src="http://farm3.static.flickr.com/2784/4114810632%5Fd601b1df38%5Fo.png" alt="Database model" title=""></p>
<p>I then translate this into the following Django model.
As I require additional data on the relationship, I believe I have to use a separate class to handle the relationship, and hold the additional</p>
<pre><code>class Artist(models.Model):
name = models.CharField(max_length = 100)
def __unicode__(self):
return self.name
class ComicIssue(models.Model):
issue_number = models.IntegerField()
title = models.TextField()
artists = models.ManyToManyField(Artist, through='IssueArtist')
def __unicode__(self):
return u'issue = %s, %s' % (self.issue_number, self.title)
class IssueArtist(models.Model):
roles = ( (0, "--------"),
(1, "Creator"),
(2, "Writer"),
(3, "Drawer"),
(4, "Pencils"),
(5, "Inks"),
(6, "Colours"),
(7, "Text"),
)
artist = models.ForeignKey(Artist)
issue = models.ForeignKey(ComicIssue)
role = models.IntegerField(choices = roles)
</code></pre>
<p>My questions are:</p>
<p>1) Does this seem a correct way of modelling this?</p>
<p>2) If I don't use the <code>through='IssueArtist'</code> feature, I can add relationships by using the <code>artists.add()</code> function. If I do use this, I get an error <code>'ManyRelatedManager' object has no attribute 'add'</code>. Do I have to manually manage the relationship by creating <code>IssueArtist()</code> instances, and explicitly searching the relationship table?
NB. I am using Django 1.0, at the moment</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-11-17T14:40:04Z
<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/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/1738952/how-can-i-limit-the-available-choices-for-a-foreign-key-field-in-a-django-modelfo0How can I limit the available choices for a foreign key field in a django modelformset?modulatrix2009-11-15T21:42:28Z2009-11-15T22:28:51Z
<p>Application:
This is a workshop proposal system for a conference. A user can create presenters and workshops, and link them together. Each user should only have access to the presenters and workshops that s/he created/owns.</p>
<pre><code># Models:
class Workshop(models.Model):
name = models.CharField(max_length=140, db_index=True)
presenters = models.ManyToManyField("Presenter", through="WorkshopPresenter")
owner = models.ForeignKey(User)
class Presenter(models.Model):
name = models.CharField(max_length=140, db_index=True)
owner = models.ForeignKey(User)
class WorkshopPresenter(models.Model):
workshop = models.ForeignKey("Workshop")
presenter = models.ForeignKey("Presenter")
cardinality = models.IntegerField()
</code></pre>
<p>To link presenters to workshops, the user is directed to a workshop-specific page, containing a modelformset for <code>WorkshopPresenter</code>. Workshop and cardinality are set by the view after the formset is filled out, so the user only sees a list of dropdowns with possible presenter names.
<a href="http://i878.photobucket.com/albums/ab347/modulatrix/association.png" rel="nofollow">Image of the association page</a></p>
<p><b>Question</b>: How can I make it so the presenter dropdowns on this association page only contain presenters who are owned by the current user? The dropdowns should only contain the results of <code>Presenter.objects.filter(owner__exact=request.user)</code>. Currently they contain <i>all</i> presenters.</p>
<pre><code># View snippet that creates the formset:
workshop = Workshop.objects.filter(owner__exact=request.user).get(id=workshop_id)
MyWorkshopPresenterFormSet = modelformset_factory(WorkshopPresenter,
formset=WorkshopPresenterFormSet,
extra=5,
exclude = ("workshop","cardinality"))
formset = MyWorkshopPresenterFormSet(request.POST or None,
queryset=workshop.workshoppresenter_set.all())
</code></pre>
<p><code>WorkshopPresenterFormSet</code> just extends <code>BaseModelFormSet</code> and does some custom validation, nothing fancy.</p>
<p>I've seen some solutions out there that work for regular forms, but nothing to work with modelformsets.</p>
http://stackoverflow.com/questions/1737588/objectlist-of-multiple-models-in-django0object_list of multiple models in djangoClarence2009-11-15T13:59:57Z2009-11-15T18:20:14Z
<p>I have multiple abstract models similar to this</p>
<pre><code>Class Article(models.Model):
title = models.CharField()
body = models.TextField()
created_date = models.DateTimeField()
author_name = models.CharField()
class Video(models.Model):
title = models.CharField()
body = models.TextField()
created_date = models.DateTimeField()
video_asset = models.CharField()
</code></pre>
<p>Now on a specific page I would like to aggregate these two models into a list based on their created_date. All the models I want I know will have a <code>title</code> and a <code>created_date</code> so I can just do something like this:</p>
<pre><code><ul>
{% for object in object_list %}
<li>{{ object.title }} on {{ object.created_at }}</li>
{% endfor %}
</ul>
</code></pre>
<p>I can count on those fields to be there with no issue.</p>
<p>I've thought about creating an additional model and using generic foreign keys. Kind of like an aggregate model. then every time a new object was created I would just signal one of those to be created and then just pull from this generic table. I dont really like this idea though. Seems highly redundant.</p>
<p>Any thoughs? </p>
<p><strong>update</strong>: I found this entry <a href="http://stackoverflow.com/questions/313137/">http://stackoverflow.com/questions/313137/</a> but it wont work in my case as I am using abstract model class for these (I just didnt show it in the example to keep it simple and clear as possible). I looked into inheritance instead of abstraction but i thought the performance hit on constant joins would take a toll. maybe not</p>