active questions tagged django-forms - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T11:07:50Zhttp://stackoverflow.com/feeds/tag/django-formshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1824589/django-forms-selectmultiple-how-to-add-some-information-to-the-option-value1Django forms.SelectMultiple, How to add some information to the option value ?Natim2009-12-01T07:39:35Z2009-12-01T10:21:14Z
<p>Hello,</p>
<p>I am looking for a Language select multiple widget for Django.
Since language are spoken in many countries, you cannot accept to have only one flag per language.</p>
<p>It is why you use language code like this : fr-FR fr-BE en-GB en-US zh-CN zh-TW</p>
<p>In order to make it user friendly for the user, I want to display the flag in the select.</p>
<p>I will use CSS in order to do this like this :</p>
<pre><code><select id="select" onchange="change();">
<option style="background:url('img1.ext') no-repeat;" value='Value1'>Label1</option>
<option style="background:url('img2.ext') no-repeat;" value='Value2'>Label2</option>
<option style="background:url('img3.ext') no-repeat;" value='Value3'>Label3</option>
</select>
</code></pre>
<p>But it is quite tricky...</p>
<p>I tried like this :</p>
<pre><code>##
# Language SelectMultiple
class LanguageSelectMultiple(SelectMultiple):
pass
def render_option(option_value, option_label):
option_value = force_unicode(option_value)
selected_html = (option_value in selected_choices) and u' selected="selected"' or ''
selected_html += u' style="background-image: url(%s) no-repeat;"' % option_label.flag.url
return u'<option value="%s"%s>%s</option>' % (
escape(option_value), selected_html,
conditional_escape(force_unicode(option_label)))
LanguageSelectMultiple.render_options.render_option = property(render_option)
</code></pre>
<p>But the last line is not valid.</p>
<p>I also tried like this but without more success :</p>
<pre><code>class LanguageSelectMultiple(SelectMultiple):
def render_option(option_value, option_label):
option_value = force_unicode(option_value)
selected_html = (option_value in selected_choices) and u' selected="selected"' or ''
selected_html += u' style="background-image: url(%s);"' % option_label.flag.url
return u'<option value="%s"%s>%s</option>' % (
escape(option_value), selected_html,
conditional_escape(force_unicode(option_label)))
render_options = SelectMultiple.render_options
render_options.render_option = render_option
</code></pre>
<p>Do you have any idea of how I can make it works ?</p>
http://stackoverflow.com/questions/1825238/is-it-possible-for-django-modelforms-to-work-with-dynamically-added-fields0Is it possible for Django ModelForms to work with dynamically added fields?webley2009-12-01T10:11:10Z2009-12-01T10:11:10Z
<p>I've managed to get Django Forms to dynamically generate additional fields based on the relationship between a specific instance (eg. 'product type') and another model (eg. 'product attributes') eg. products have common attributes like weight and price but a book has a page count and a computer has specs.</p>
<p>I'd like to be able to do the same with ModelForms so that I can just call form.save() but I'm not sure what the right approach would be to do this or where to start. At first I thought it would be possible by overriding some of the methods but then I've looked around the models.py file and it seems that I'd need to add quite a bit of code at various places in there to handle the additional fields ie. quite a lot of work. Or am I missing the easy way?</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/1810757/only-validate-certain-fields-if-a-booleanfield-is-set0Only validate certain fields if a BooleanField is setOli2009-11-27T21:58:06Z2009-11-30T12:08:40Z
<p>Scenario: I'm building an order-form. Like every other order-form on the planet, it has separate invoicing shipping addresses. I've just added a "Use billing address" checkbox to let the user save time.</p>
<p>The problem is, the shipping fields are still there. They will fail validation if the user don't enter any shipping address data (like if they want to use the billing address).</p>
<p>What I think I'd like to do override the ModelForm validation for these duplicate fields. In there, if the box is checked (not sure how I get that data from within a validator), I return the billing version. If it's not checked, I pass it back to the original validation.</p>
<p>Sounds like a plan doesn't it? Well I fell at the first hurdle. My <code>clean_functions</code> aren't working. Doesn't look like they're even being called.</p>
<p>Here's some code:</p>
<pre><code># shipping_street is a field in my Order Model
class OrderForm(ModelForm):
class Meta:
model = Order
def clean_shipping_street(self):
print "JUST GET ME SOME OUTPUT!!!"
raise forms.ValidationError('RAWRAWR')
</code></pre>
<p>Here's how I'm testing:</p>
<pre><code>def checkout(request):
of = OrderForm()
if request.method == "POST":
of = OrderForm(request.POST)
print 'Form valid:', of.is_valid()
# ...
# return my HttpResponse with 'of' in the context.
</code></pre>
http://stackoverflow.com/questions/1006617/models-uniquetogether-constraint-none-fail1Models unique_together constraint + None = fail?lostincode2009-06-17T12:11:38Z2009-11-29T21:31:21Z
<p>2 questions:</p>
<ul>
<li>How can I stop duplicates from being created when parent=None and name is the same?</li>
<li>Can i call a model method from within the form? </li>
</ul>
<p>Please see full details below:</p>
<h1>models.py</h1>
<pre><code>class MyTest(models.Model):
parent = models.ForeignKey('self', null=True, blank=True, related_name='children')
name = models.CharField(max_length=50)
slug = models.SlugField(max_length=255, blank=True, unique=True)
owner = models.ForeignKey(User, null=True)
class Meta:
unique_together = ("parent", "name")
def save(self, *args, **kwargs):
self.slug = self.make_slug()
super(MyTest, self).save(*args, **kwargs)
def make_slug(self):
# some stuff here
return generated_slug
</code></pre>
<p>note: slug = unique as well!</p>
<h1>forms.py</h1>
<pre><code>class MyTestForm(forms.ModelForm):
class Meta:
model = MyTest
exclude = ('slug',)
def clean_name(self):
name = self.cleaned_data.get("name")
parent = self.cleaned_data.get("parent")
if parent is None:
# this doesn't work when MODIFYING existing elements!
if len(MyTest.objects.filter(name = name, parent = None)) > 0:
raise forms.ValidationError("name not unique")
return name
</code></pre>
<h1>Details</h1>
<p>The <code>unique_together</code> contraint works perfectly w/ the form when <code>parent != None</code>. However when <code>parent == None</code> (null) it allows duplicates to be created.</p>
<p>In order to try and avoid this, i tried using the form and defined clean_name to attempt to check for duplicates. This works when <em>creating</em> new objects, but doesn't work when modifying existing objects.</p>
<p>Someone had mentioned i should use commit=False on the ModelForm's .save, but I couldn't figure out how to do/implement this. I also thought about using the ModelForm's has_changed to detect changes to a model and allow them, but has_changed returns true on newly created objects with the form as well. help!</p>
<p>Also, (somewhat a completely different question) can I access the make_slug() model method from the Form? I <em>believe</em> that currently my <code>exclude = ('slug',)</code> line is also ignoring the 'unique' constraint on the slug field, and in the models save field, I'm generating the slug instead. I was wondering if i could do this in the forms.py instead?</p>
http://stackoverflow.com/questions/1814215/binding-files-to-forms-in-django1Binding Files to Forms in DjangoSapphireSun2009-11-29T00:07:51Z2009-11-29T01:04:15Z
<p>Hello everyone,</p>
<p>I'm trying to create a form where users can save their progress. I have successfully managed to upload files when they are saved, but for some reason the following code leaves the file that was uploaded unbound from the form and thus making the user reupload the file:</p>
<pre><code>class ImageForm(forms.ModelForm):
class Meta:
model = MyImage
imageform = ImageForm(instance=a_MyImage_instance)
</code></pre>
<p>I suppose I could go some manual getting and setting a la the documentation, but this behavior seems a bit odd to me. Can someone clarify this?</p>
http://stackoverflow.com/questions/291945/how-do-i-filter-foreignkey-choices-in-a-django-modelform8How do I filter ForeignKey choices in a Django ModelForm?Tom2008-11-15T01:21:33Z2009-11-28T21:23:59Z
<p>Say I have the following in my <code>models.py</code>:</p>
<pre><code>class Company(models.Model):
name = ...
class Rate(models.Model):
company = models.ForeignKey(Company)
name = ...
class Client(models.Model):
name = ...
company = models.ForeignKey(Company)
base_rate = models.ForeignKey(Rate)
</code></pre>
<p>I.e. there are multiple <code>Companies</code>, each having a range of <code>Rates</code> and <code>Clients</code>. Each <code>Client</code> should have a base <code>Rate</code> that is chosen from it's parent <code>Company's Rates</code>, not another <code>Company's Rates</code>.</p>
<p>When creating a form for adding a <code>Client</code>, I would like to remove the <code>Company</code> choices (as that has already been selected via an "Add Client" button on the <code>Company</code> page) and limit the <code>Rate</code> choices to that <code>Company</code> as well.</p>
<p>How do I go about this in Django 1.0? </p>
<p>My current <code>forms.py</code> file is just boilerplate at the moment:</p>
<pre><code>from models import *
from django.forms import ModelForm
class ClientForm(ModelForm):
class Meta:
model = Client
</code></pre>
<p>And the <code>views.py</code> is also basic:</p>
<pre><code>from django.shortcuts import render_to_response, get_object_or_404
from models import *
from forms import *
def addclient(request, company_id):
the_company = get_object_or_404(Company, id=company_id)
if request.POST:
form = ClientForm(request.POST)
if form.is_valid():
form.save()
return HttpResponseRedirect(the_company.get_clients_url())
else:
form = ClientForm()
return render_to_response('addclient.html', {'form': form, 'the_company':the_company})
</code></pre>
<p>In Django 0.96 I was able to hack this in by doing something like the following before rendering the template:</p>
<pre><code>manipulator.fields[0].choices = [(r.id,r.name) for r in Rate.objects.filter(company_id=the_company.id)]
</code></pre>
<p><a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.ForeignKey.limit_choices_to" rel="nofollow"><code>ForeignKey.limit_choices_to</code></a> seems promising but I don't know how to pass in <code>the_company.id</code> and I'm not clear if that will work outside the Admin interface anyway.</p>
<p>Thanks. (This seems like a pretty basic request but if I should redesign something I'm open to suggestions.)</p>
http://stackoverflow.com/questions/1811222/django-modelform-exclude-fields-by-regex0Django modelform: exclude fields by regexdaveknowles2009-11-28T01:16:54Z2009-11-28T01:16:54Z
<p>I have a "Villa" Model with lots of descriptive TextFields. For each TextField, I have a copy which will be the Russian translation of the original field, which I'm naming by appending "_ru", for example "long_description" and "long_description_ru". I would like to exclude all the "_ru" fields from my ModelForm, which I thought I would be able to do like this:</p>
<pre><code>class VillaForm(ModelForm):
class Meta:
model = Villa
exclude = []
for field_name in Villa.__dict__:
print field_name
if field_name.endswith("_ru"):
exclude.append(field_name)
</code></pre>
<p>However, <code>Villa.__dict__</code> does not contain the TextFields - even though they get rendered by the ModelForm. Am I being very stupid here? </p>
http://stackoverflow.com/questions/1809874/get-type-of-django-form-widget-from-within-template0Get type of Django form widget from within templateOli2009-11-27T17:29:11Z2009-11-27T19:44:22Z
<p>I'm iterating through the fields of a form and for certain fields I want a slightly different layout, requiring altered HTML.</p>
<p>To do this accurately, I just need to know the widget type. It's class name or something similar. In standard python, this is easy! <code>field.field.widget.__class__.__name__</code></p>
<p>Unfortunately, you're not allowed access to underscore variables in templates. <strong>Great!</strong></p>
<p>You <em>can</em> test <code>field.field.widget.input_type</code> but this only works for text/password <code><input ../></code> types. I need more resolution that that.</p>
<p>To me, however difficult it might look, it makes most sense to do this at template level. I've outsourced the bit of code that handles HTML for fields to a separate template that gets included in the field-loop. This means it is consistent across <code>ModelForm</code>s and standard <code>Form</code>s (something that wouldn't be true if I wrote an intermediary Form class).</p>
<p>If you can see a universal approach that doesn't require me to edit 20-odd forms, let me know too!</p>
http://stackoverflow.com/questions/261223/how-do-i-use-css-in-django5How do I use CSS in Django?gath2008-11-04T08:12:44Z2009-11-24T13:38:36Z
<p>I am creating my application using Django, and am wondering how I can make Django use my CSS file? What settings do I need to do to make Django see the css file?</p>
<p>NB: On a local machine</p>
http://stackoverflow.com/questions/1789641/complex-forms-in-django-what-apps-and-django-python-features-should-i-look-at4Complex forms in Django - what apps and Django/Python features should I look at?Monika Sulik2009-11-24T12:03:39Z2009-11-24T12:46:16Z
<p>There are a lot of complex forms in my project and I keep getting the feeling that I could be coding them much more elegantly and simply.
So my question is what are some good apps and practices that might help me? Specifically, I'm thinking about situations when I need to do stuff like:</p>
<ul>
<li>edit/add more than one object via one form (example: Lets say I have a Partnership model and a Person model - every partnership object is related to two people. Now lets say I want to edit the partnership and the two people in the partnership simultaneously.)</li>
<li>deal with many to many relationships - particularly those that have extra data associated</li>
<li>"wizard-like" forms (as in there's a couple of pages/steps and the user has to get through all of them before anything gets saved to the database)</li>
<li>giving suggestions for what to write into a form field based on what's in the database (I guess this is an AJAX question really, but I'm interested in whether there are some django apps that simplify this somehow)</li>
</ul>
<p>Solutions to any other more complex form scenarios also welcome. The above are problems I've already come across, but I'd like to generally find out about what are some best practices with forms.</p>
http://stackoverflow.com/questions/1765757/choicefield-doesnt-display-an-empty-label-when-using-a-tuple-am-i-doing-someth0ChoiceField doesn't display an empty label when using a tuple - am I doing something wrong?Monika Sulik2009-11-19T19:05:26Z2009-11-23T15:19:54Z
<h2>What I'm trying to do</h2>
<p>I'm going to be keeping data about competitions in my database. I want to be able to search the competitions by certain criteria - competition type in particular.</p>
<h2>About competition types</h2>
<p>Competition types are kept in a tuple. A slightly shortened example:</p>
<pre><code>COMPETITION_TYPE_CHOICES = (
(1, 'Olympic Games'),
(2, 'ISU Championships'),
(3, 'Grand Prix Series'),
)
</code></pre>
<p>These are used in the model like so (again - this is a shortened/simplified version of the model):</p>
<pre><code>class Competition(models.Model):
name = models.CharField(max_length=256)
type = models.IntegerField(choices=COMPETITION_TYPE_CHOICES)
</code></pre>
<h2>The search form</h2>
<p>I don't want the fields to be required in the search form, so the form is defined like this:</p>
<pre><code>class CompetitionSearchForm(forms.Form):
name = forms.CharField(required=False)
type = forms.ChoiceField(choices=COMPETITION_TYPE_CHOICES,required=False)
</code></pre>
<h2>The problem</h2>
<p>I'd like the select widget in ChoiceField to display an empty label, but I don't get one. Any help with this would be much appreciated :)</p>
http://stackoverflow.com/questions/1777435/django-multiwidget-phone-number-field0Django MultiWidget Phone Number FieldBirdman2009-11-22T01:17:29Z2009-11-22T18:26:08Z
<p>I want to create a field for phone number input that has 2 text fields (size 3, 3, and 4 respectively) with the common "(" ")" "-" delimiters. Below is my code for the field and the widget, I'm getting the following error when trying to iterate the fields in my form during initial rendering (it happens when the for loop gets to my phone number field):</p>
<p>Caught an exception while rendering: 'NoneType' object is unsubscriptable</p>
<pre><code>class PhoneNumberWidget(forms.MultiWidget):
def __init__(self,attrs=None):
wigs = (forms.TextInput(attrs={'size':'3','maxlength':'3'}),\
forms.TextInput(attrs={'size':'3','maxlength':'3'}),\
forms.TextInput(attrs={'size':'4','maxlength':'4'}))
super(PhoneNumberWidget, self).__init__(wigs, attrs)
def decompress(self, value):
return value or None
def format_output(self, rendered_widgets):
return '('+rendered_widgets[0]+')'+rendered_widgets[1]+'-'+rendered_widgets[2]
class PhoneNumberField(forms.MultiValueField):
widget = PhoneNumberWidget
def __init__(self, *args, **kwargs):
fields=(forms.CharField(max_length=3), forms.CharField(max_length=3), forms.CharField(max_length=4))
super(PhoneNumberField, self).__init__(fields, *args, **kwargs)
def compress(self, data_list):
if data_list[0] in fields.EMPTY_VALUES or data_list[1] in fields.EMPTY_VALUES or data_list[2] in fields.EMPTY_VALUES:
raise fields.ValidateError(u'Enter valid phone number')
return data_list[0]+data_list[1]+data_list[2]
class AdvertiserSumbissionForm(ModelForm):
business_phone_number = PhoneNumberField(required=True)
</code></pre>
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/1131285/how-to-save-fields-that-are-not-part-of-form-but-required-in-django0How to save fields that are not part of form but required in Djangotijs2009-07-15T13:05:52Z2009-11-18T22:18:06Z
<p>I have a model with a field that is required but not entered by the user and i have a hard time saving the model without errors. My model definition looks like this:</p>
<pre><code>class Goal(db.Model):
author = db.UserProperty(required=True)
description = db.StringProperty(multiline=True, required=True)
active = db.BooleanProperty(default=True)
date = db.DateTimeProperty(auto_now_add=True)
class GoalForm(djangoforms.ModelForm):
class Meta:
model = Goal
exclude = ['author', 'active']
</code></pre>
<p>And i use django-forms in appengine to create and validate the form. When i try to save the result of this form however....</p>
<pre><code> def post(self):
data = GoalForm(data=self.request.POST)
if data.is_valid():
goal = data.save(commit=False)
goal.author = users.get_current_user()
goal.put()
self.redirect('/')
</code></pre>
<p>I get "ValueError: The Goal could not be created (Property author is required)"</p>
<p>Now i would think that by having commit=False, then adding the property for Goal, and then saving the object would allow me to do this but obviously it's not working. Any ideas?</p>
http://stackoverflow.com/questions/1741732/django-provide-choices-list-to-a-checkbox-from-a-view-function0Django: provide choices list to a checkbox from a view functionAlex2009-11-16T11:54:09Z2009-11-17T09:10:10Z
<p>Hi, in my Django application I've got a form with a ChoiceField that normally allows to choice between a range of integer values.</p>
<pre><code>class FormNumber(forms.Form):
list=[]
for i in range(1, 11):
list.append((i,i))
number=forms.ChoiceField(choices=list, initial=1)
</code></pre>
<p>Now I need to override the default choices list from a view method in some cases, using a smaller range, but trying to do it in this way</p>
<pre><code>n=10-len(request.session["items"])
if n>0:
list=[]
for i in range(1, n+1):
list.append((i,i))
form=FormNumber(choices={'number':list}, initial={'number':1})
</code></pre>
<p>I get a TypeError - __ init__() got an unexpected keyword argument 'choices'. I tried also to remove the parameters from the form class, but I get the same result.</p>
<p>Is there a way to initialize the ChoiceField with a new choices list from the view in a way similar to the one above?
Thanks in advance :)</p>
http://stackoverflow.com/questions/1745851/customize-the-html-output-of-djangos-form-validation1Customize the html output of Django's form validationMark Stahler2009-11-17T00:35:33Z2009-11-17T00:44:46Z
<p>Whenever you use a {{ form.field.errors }} tag in a Django template, when the validation message is displayed it is always surrounded with a unordered list tag which is not ideal for me. Am I able to modify the surrounding validation message html for a form from a reusable package?</p>
http://stackoverflow.com/questions/1714516/alternate-forms-libraries-on-django-eg-sprox-formalchemy1Alternate forms libraries on django eg sprox, formalchemyBen Ford2009-11-11T11:12:23Z2009-11-16T05:32:52Z
<p>Has anyone had any joy/pain with using other form libraries in django projects (with SQLAlchemy models initially, but perhaps to use with django models in future)?</p>
<p>Initial impressions are that sprox is more flexible and decoupled but that formalchemy might be quicker to get up and running with, but I'd be really interested in hearing from other people who have defected from django.forms already or that have experience with either of sprox or formalchemy.</p>
<p>Cheers,
Ben</p>
http://stackoverflow.com/questions/1738784/what-is-attr-gtbfieldid-and-how-to-avoid-autocomplete-behavior2what is attr 'gtbfieldid' and how to avoid autocomplete behavior ?panchicore2009-11-15T20:52:51Z2009-11-15T21:26:37Z
<p>Hi, I have this simple form:</p>
<pre><code>class PagoDesde(forms.Form):
from django import forms as f
desde = f.DateField(input_formats=['%d/%m/%Y'])
</code></pre>
<p>In my template:</p>
<pre><code> {{ form.desde }}
</code></pre>
<p>And has associated a jqueryui.datepicker in the document.ready</p>
<pre><code> $("#id_desde").datepicker();
</code></pre>
<p>The html result is:</p>
<pre><code><input type="text" id="id_desde" name="desde"
class="hasDatepicker" gtbfieldid="598"/>
</code></pre>
<p>And it works great, but I have</p>
<p>2 questions:</p>
<ul>
<li>what is <code>gtbfieldid="598"</code>? does jquery add that?</li>
<li>how to avoid the autocomplete behavior of the browsers in this textfield?</li>
</ul>
<p>thanks :)</p>
http://stackoverflow.com/questions/1718533/custom-save-method-giving-invalid-tuple-size-error0Custom save method giving invalid tuple size errorkfordham2812009-11-11T22:30:00Z2009-11-13T22:38:13Z
<p>I've been stuck on this likely very simple problem, but haven't gotten anywhere with it (newbie to Python and Django). I'm taking some user submitted data and using weights to calculate a score. Despite my best efforts, I'm getting the following when I submit the data via a form: "global name 'appearance' is not defined". I'm pretty sure my issue is in views.py, but I'm not 100% sure. Either a typecast error or just putting the calculation of the score in the wrong place. Any help is much appreciated. Here's my code:</p>
<p><strong>Update:</strong> The error I'm receiving after changing my approach to using a custom save method is: "Invalid tuple size in creation of Decimal from list or tuple. The list or tuple should have exactly three elements.".</p>
<p>models.py</p>
<pre><code># Beer rating weights
APPEARANCE_WEIGHT = 0.15
AROMA_WEIGHT = 0.15
MOUTHFEEL_WEIGHT = 0.10
TASTE_WEIGHT = 0.25
TOTALPACKAGE_WEIGHT = 0.25
SERVING_TYPE = (
('0', 'Choose One'),
('Draft', 'Draft'),
('Bottle', 'Bottle'),
('Can', 'Can'),
)
SCORING = (
(0, ''),
(1, '1'),
(2, '2'),
(3, '3'),
(4, '4'),
(5, '5'),
(6, '6'),
(7, '7'),
(8, '8'),
(9, '9'),
(10, '10'),
)
class Beerrating(models.Model):
beerrated = models.ForeignKey(Beer)
user = models.ForeignKey(User)
date = models.DateTimeField(auto_now_add=True)
servingtype = models.CharField(max_length=10, choices=SERVING_TYPE)
appearance = models.IntegerField(choices=SCORING, default=0)
aroma = models.IntegerField(choices=SCORING, default=0)
mouthfeel = models.IntegerField(choices=SCORING, default=0)
taste = models.IntegerField(choices=SCORING, default=0)
totalpackage = models.IntegerField(choices=SCORING, default=0)
comments = models.TextField()
overallrating = models.DecimalField(max_digits=4, decimal_places=2)
def __unicode__(self):
return u'%s, %s' % (self.user.username, self.beerrated.beername)
def save(self):
if not self.id:
scoredappearance = self.appearance * APPEARANCE_WEIGHT,
scoredaroma = self.aroma * AROMA_WEIGHT,
scoredmouthfeel = self.mouthfeel * MOUTHFEEL_WEIGHT,
scoredtaste = self.taste * TASTE_WEIGHT,
scoredtotalpackage = self.totalpackage * TOTALPACKAGE_WEIGHT,
self.overallrating = (scoredappearance + scoredaroma +
scoredmouthfeel + scoredtaste + scoredtotalpackage)
super(Beerrating, self).save()
</code></pre>
<p>forms.py</p>
<pre><code>class BeerReviewForm(ModelForm):
servingtype = forms.CharField(max_length=10,
label=u'Serving Type',
widget=forms.Select(choices=SERVING_TYPE)
)
totalpackage = forms.IntegerField(
label=u'Total Package',
widget=forms.Select(choices=SCORING)
)
class Meta:
model = Beerrating
exclude = ('beerrated', 'user', 'date', 'overallrating')
</code></pre>
<p>views.py</p>
<pre><code>def beerreview(request, beer_id):
beer = get_object_or_404(Beer, id=beer_id)
if request.method == 'POST':
form = BeerReviewForm(request.POST)
if form.is_valid():
# Create review
beerrating = Beerrating(
beerrated = beer,
user = request.user,
servingtype = form.cleaned_data['servingtype'],
appearance = form.cleaned_data['appearance'],
scoredappearance = appearance * APPEARANCE_WEIGHT,
aroma = form.cleaned_data['aroma'],
scoredaroma = aroma * AROMA_WEIGHT,
mouthfeel = form.cleaned_data['mouthfeel'],
scoredmouthfeel = mouthfeel * MOUTHFEEL_WEIGHT,
taste = form.cleaned_data['taste'],
scoredtaste = taste * TASTE_WEIGHT,
totalpackage = form.cleaned_data['totalpackage'],
scoredtotalpackage = totalpackage * TOTALPACKAGE_WEIGHT,
comments = form.cleaned_data['comments'],
)
beerrating.save()
return HttpResponseRedirect('/beers/')
else:
form = BeerReviewForm()
variables = RequestContext(request, {
'form': form
})
return render_to_response('beer_review.html', variables)
</code></pre>
http://stackoverflow.com/questions/1727564/how-to-create-a-userprofile-form-in-django-with-firstname-lastname-modificatio3How to create a UserProfile form in Django with first_name, last_name modifications ?Natim2009-11-13T06:46:24Z2009-11-13T08:28:13Z
<p>If think my question is pretty obvious and almost every developer working with UserProfile should be able to answer it.</p>
<p>However, I could not find any help on the django documentation or in the Django Book.</p>
<p>When you want to do a UserProfile form in with Django Forms, you'd like to modify the profile fields as well as some User field.</p>
<p>But there is no forms.UserProfileForm (yet?) !</p>
<p>How do you do that ?</p>
http://stackoverflow.com/questions/1720405/django-select-record-based-on-search-results0Django select record based on search resultsTony Anderson2009-11-12T06:59:22Z2009-11-12T06:59:22Z
<p>I am a complete beginner trying to build an inventory app in Django by copying examples. There are two models of interest, a item record and a name record. The item has a primary key - the manufacturer's serial number (an 11 character mix of letters and numbers) and an inventory tag (charField of 20 chars or less - which could be blank). The name record has names of staff members who may have checked out the item (name, fullname, site) where fullname is unique but the pk is generated. What I would like is a url that shows a search form. The client enters the full or partial name which returns a form showing all matching name records. The client then selects the specific name record which returns a form showing the item assigned to that client (a modelform allowing update of information in the item record).</p>
<p>So far I can do the search and show the matching records. The question is how to show the matching records with checkboxes, getting that result, then getting the matching record as a model form. </p>
http://stackoverflow.com/questions/1717715/customize-html-output-of-django-modelform1Customize HTML Output of Django ModelFormMark Stahler2009-11-11T20:05:51Z2009-11-11T20:22:00Z
<p>I am trying to add multiple inline form items to a page using Djangos ModelForms. I need Select boxes bound to database models. The forms are formatted and placed in a tabular format so I need to display only the ModelForm without ANY surrounding HTML.</p>
<pre><code>class LeagueForm(ModelForm):
league = forms.ModelChoiceField(queryset=League.objects.all(), empty_label='Manual Team Entry:', required=False)
class Meta:
model = League
exclude = ['league_name']
</code></pre>
<p>Template:</p>
<pre><code>{% if selected_sport == 1 %}
<td>{{ nhl_form.as_p }}</td>
{% else %}
</code></pre>
<p>The problem is I dont want the paragraph tags, nor tables tags or anything at all. I need to have the form nicely sit where I place it without garbling up the surrounding html.</p>
<p>Can anyone please point me in the right direction? Thanks</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/727917/display-some-free-text-in-between-django-form-fields0Display some free text in between Django Form fieldslbolognini2009-04-07T22:59:06Z2009-11-10T02:07:41Z
<p>Hi all,</p>
<p>I have a form like the following:</p>
<pre><code>class MyForm(Form):
#personal data
firstname = CharField()
lastname = CharField()
#education data
university = CharField()
major = CharField()
#foobar data
foobar = ChoiceField()
</code></pre>
<p>Since some fields (like foobar) are populated from the database i can't use another method other than letting Django render it for me with form.as_ul </p>
<p>Also i wish i don't have to split the form in multiple forms for ease of mantainance</p>
<p>Is there a way to tell Django to display a help text in between these form sections so that i can put in some instructions on how to fill the form?</p>
<p>I'd like the form to render something like this:</p>
<pre><code><form>
<p>Here you enter your personal data...</p>
<input name='firstname'>
<input name='lastname'>
<p>Here you enter your education data...</p>
<input name='university'>
<input name='major'>
</form>
</code></pre>
<p>Would i need to create my own widget to be able to display those <code><P></code> tags, or is there an easier way?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/913589/django-forms-inheritance-and-order-of-form-fields3Django forms, inheritance and order of form fieldsHannson2009-05-27T01:46:50Z2009-11-09T21:22:10Z
<p>I'm using Django forms in my website and would like to control the order of the fields.</p>
<p>Here's how I define my forms:</p>
<pre><code>class edit_form(forms.Form):
summary = forms.CharField()
description = forms.CharField(widget=forms.TextArea)
class create_form(edit_form):
name = forms.CharField()
</code></pre>
<p>The name is immutable and should only be listed when the entity is created. I use inheritance to add consistency and DRY principles. What happens which is not erroneous, in fact totally expected, is that the name field is listed last in the view/html but I'd like the name field to be on top of summary and description. I do realize that I could easily fix it by copying summary and description into create_form and loose the inheritance but I'd like to know if this is possible. </p>
<p><strong>Why?</strong> Imagine you've got 100 fields in edit_form and have to add 10 fields on the top in create_form - copying and maintaining the two forms wouldn't look so sexy then. (This is <em>not</em> my case, I'm just making up an example)</p>
<p>So, how can I override this behavior?</p>
<p><strong>Edit:</strong></p>
<p>Apparently there's no proper way to do this without going through nasty hacks (fiddling with .field attribute). The .field attribute is a SortedDict (one of Django's internal datastructures) which doesn't provide any way to reorder key:value pairs. It does how-ever provide a way to insert items at a given index but that would move the items from the class members and into the constructor. This method would work, but make the code less readable. The only other way I see fit is to modify the framework itself which is less-than-optimal in most situations.</p>
<p>In short the code would become something like this:</p>
<pre><code>class edit_form(forms.Form):
summary = forms.CharField()
description = forms.CharField(widget=forms.TextArea)
class create_form(edit_form):
def __init__(self,*args,**kwargs):
forms.Form.__init__(self,*args,**kwargs)
self.fields.insert(0,'name',forms.CharField())
</code></pre>
<p>That shut me up :) </p>
http://stackoverflow.com/questions/1700202/editing-both-sides-of-m2m-in-admin-page2Editing both sides of M2M in Admin PageDavidM2009-11-09T10:27:46Z2009-11-09T11:19:08Z
<p>Hello all,</p>
<p>First I'll lay out what I'm trying to achieve in case there's a different way to go about it!</p>
<p>I want to be able to edit both sides of an M2M relationship (preferably on the admin page although if needs be it could be on a normal page) using any of the multi select interfaces.</p>
<p>The problem obviously comes with the reverse side, as the main side (where the relationship is defined) works just fine automagically.</p>
<p>I have tried some of the advice here to get an inline to appear and that works but its not a very nice interface.</p>
<p>The advice I got on the django mailing list was to use a custom ModelForm. I've got as far as getting a multiselect box to appear but it doesnt seem to be "connected" to anything as it does not start with anything selected and does not save any changes that are made.</p>
<p>Here's the appropriate snippets of code:</p>
<pre><code>#models.py
class Tag(models.Model):
name = models.CharField(max_length=200)
class Project(models.Model):
name = models.CharField(max_length=200)
description = models.TextField()
tags = models.ManyToManyField(Tag, related_name='projects')
#admin.py
class TagForm(ModelForm):
fields = ('name', 'projects')
projects = ModelMultipleChoiceField(Project.objects.all(), widget=SelectMultiple())
class Meta:
model = Tag
class TagAdmin(admin.ModelAdmin):
fields = ('name', 'projects')
form = TagForm
</code></pre>
<p>Any help would be much appreciated, either getting the code above to work or by providing a better way to do it!</p>
<p>DavidM</p>
http://stackoverflow.com/questions/1700043/django-uniform-and-pythons-init-function-how-to-pass-arguments-to-a-fo0django, uni_form and python's __init__() function - how to pass arguments to a form?hora2009-11-09T09:50:32Z2009-11-09T10:03:10Z
<p>I'm having a bit of difficulty understanding how the python <code>__init__</code>( ) function works. What I'm trying to do is create a new form in django, and use the uni_form helper to display the form in a custom manner using fieldsets, however I'm passing an argument to the form that should slightly change the layout of the form and I can't figure out how to make this work. Here's my code:</p>
<pre><code>class MyForm(forms.Form):
name = forms.CharField(label=_("Your name"), max_length=100, widget=forms.TextInput())
city = forms.CharField(label=_("Your city"), max_length=100, widget=forms.TextInput())
postal_code = forms.CharField(label=_("Postal code"), max_length=7, widget=forms.TextInput(), required=False)
def __init__(self, city, *args, **kwargs):
super(MyForm, self).__init__(*args, **kwargs)
if city == "Vancouver":
self.canada = True
if self.canada:
# create an extra uni_form fieldset that shows the postal code field
else:
# create the form without the postal code field
</code></pre>
<p>However, the reason this isn't working for me. self.canada never seems to have any value outside of <code>__init__</code>, and therefore even though I passed that argument to the function I can't use the value in my class. I found a workaround for this, which is to create the form entirely inside <code>__init__</code> using self.fields, but this is ugly. How do I use self.canada outside of <code>__init__</code>?</p>
http://stackoverflow.com/questions/1180745/django-setting-selectedselected-on-a-radio-input0Django, setting selected="selected" on a radio inputpanosl2009-07-25T00:03:46Z2009-11-09T05:59:40Z
<p>A simple form with ModelChoiceField displayed as radio buttons (the inherited widget).</p>
<p>I'm using an onchange event to POST, everytime a user selects a radio button:</p>
<pre><code>shipping_choice = ShippingChoiceField(
queryset=ShippingMethods.objects.all(),
empty_label=None,
widget=forms.RadioSelect(attrs={
'class': 'order',
'onchange': '$("#shipping_choice").submit()',
})
)
</code></pre>
<p>I need to have the radio that the user selected thought, actually be "selected" when the page reloads.</p>
<p>Adding an extra attr 'selected', will not do, 'cause it needs to happen when the user actually has made a choice first.</p>
http://stackoverflow.com/questions/1698435/django-multi-select-widget2Django multi-select widget?Mark2009-11-09T00:03:33Z2009-11-09T01:39:13Z
<p>The Django admin site makes use of a really cool widget:</p>
<p><img src="http://img196.imageshack.us/img196/9066/multiselectwidget.gif"/></p>
<p>How can I make use of this widget in my own applications? I don't see anything like that <a href="http://docs.djangoproject.com/en/dev/ref/forms/widgets/#ref-forms-widgets" rel="nofollow">listed here</a>.</p>