active questions tagged django+django-forms - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T10:00:04Zhttp://stackoverflow.com/feeds/tag/django+django-formshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1941812/django-error-got-multiple-values-for-keyword-argument0Django error: got multiple values for keyword argumentMarcus Whybrow2009-12-21T18:35:19Z2009-12-21T20:20:49Z
<p>I get the following error when instantiating a Django form with a the constructor overriden:</p>
<pre><code>__init__() got multiple values for keyword argument 'collection_type'
</code></pre>
<p>The <code>__init__()</code> function (shown below) is exactly as written this but with <code># code</code> replaced with my logic. Asside from that I am essentially overriding the form's (which is a ModelForm) constructor.</p>
<pre><code>def __init__(self, collection_type, user=None, parent=None, *args, **kwargs):
# code
super(self.__class__, self).__init__(*args, **kwargs)
</code></pre>
<p>The call that creates the error is shown here:</p>
<pre><code>form = CreateCollectionForm(
request.POST,
collection_type=collection_type,
parent=parent,
user=request.user
)
</code></pre>
<p>I cannot see any reason why the error is popping up.</p>
<p>EDIT: Here is the full code for the constructor</p>
<pre><code>def __init__(self, collection_type, user=None, parent=None, *args, **kwargs):
self.collection_type = collection_type
if self.collection_type == 'library':
self.user = user
elif self.collection_type == 'bookshelf' or self.collection_type == 'series':
self.parent = parent
else:
raise AssertionError, 'collection_type must be "library", "bookshelf" or "series"'
super(self.__class__, self).__init__(*args, **kwargs)
</code></pre>
<p>EDIT: Stacktrace</p>
<pre><code>Environment:
Request Method: POST
Request URL: http://localhost:8000/forms/create_bookshelf/hello
Django Version: 1.1.1
Python Version: 2.6.1
Installed Applications:
['django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'libraries',
'users',
'books',
'django.contrib.admin',
'googlehooks',
'registration']
Installed Middleware:
('django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware')
Traceback:
File "/Library/Python/2.6/site-packages/django/core/handlers/base.py" in get_response
92. response = callback(request, *callback_args, **callback_kwargs)
File "/Library/Python/2.6/site-packages/django/contrib/auth/decorators.py" in __call__
78. return self.view_func(request, *args, **kwargs)
File "/Users/marcus/Sites/marcuswhybrow.net/autolib/libraries/forms.py" in create_collection
13. form = CreateCollectionForm(request.POST, collection_type=collection_type, user=request.user)
Exception Type: TypeError at /forms/create_bookshelf/hello
Exception Value: __init__() got multiple values for keyword argument 'collection_type'
</code></pre>
http://stackoverflow.com/questions/1934834/caching-django-query-results-for-unicode-calls-that-refer-to-related-objects0Caching Django query results for __unicode__ calls that refer to related objectsJeff Bradberry2009-12-20T04:21:51Z2009-12-20T06:29:18Z
<p>I have the following models:</p>
<pre><code>class Territory(models.Model):
name = models.CharField(max_length=30)
power = models.ForeignKey(Power, null=True, blank=True)
is_supply = models.BooleanField()
class Subregion(models.Model):
territory = models.ForeignKey(Territory)
subname = models.CharField(max_length=10, blank=True)
sr_type = models.CharField(max_length=1, choices=SUBREGION_CHOICES)
init_unit = models.BooleanField()
borders = models.ManyToManyField("self", null=True, blank=True)
def __unicode__(self):
if self.subname:
return u'%s (%s)' % (self.territory.name, self.subname)
else:
return u'%s [%s]' % (self.territory.name, self.sr_type)
</code></pre>
<p>The problem is that when rendering a <code>ModelFormSet</code>, each form of which has 3 <code>ModelChoiceFields</code> containing all 120 <code>Subregions</code>, an individual <code>SELECT</code> query is generated for each <code>Subregion</code> in each widget. According to my Postgres logs, over 1000 queries are being generated for a simple 3-form formset, with a noticeable effect on page load times.</p>
<p>So, is there a reasonable way to do a single large query that will cache all of the information that <code>Subregion.__unicode__()</code> wants?</p>
http://stackoverflow.com/questions/1694447/how-to-set-an-event-handler-in-a-django-form-input-field0how to set an event handler in a django form input fieldAlex. S.2009-11-07T21:17:50Z2009-12-18T10:00:01Z
<p>How to set a javascript function as handler in the event onclick in a given field of a Django Form. Is this possible?</p>
<p>Any clue would be appreciated.</p>
http://stackoverflow.com/questions/1924704/use-optgroup-with-form-fields-queryset0Use <optgroup> with form.fields.queryset?Matt McCormick2009-12-17T21:25:27Z2009-12-17T22:33:59Z
<p>Is it possible to set a form's ForeignKey field's queryset so that it will take separate queryset's and output them in <code><optgroup></code>'s?</p>
<p>Here is what I have:</p>
<p>views.py</p>
<pre><code>form = TemplateFormBasic(initial={'template': digest.template.id})
form.fields['template'].queryset = Template.objects.filter(Q(default=1) | Q(user=request.user)).order_by('name')
</code></pre>
<p>In my Template model, I have default Templates and User-created templates. I want them to be visibly separated in the <code><select></code> box eg.</p>
<pre><code><select>
<optgroup label="Default Templates">
<option>Default 1</option>
<option>Default 2</option>
</optgroup>
<optgroup label="User Templates">
<option>User Template 1</option>
<option>User Template 2</option>
</optgroup>
</select>
</code></pre>
<p>Can this be done?</p>
http://stackoverflow.com/questions/1923948/check-for-a-hidden-form-variable-in-a-view0Check for a hidden form variable in a view472009-12-17T19:17:57Z2009-12-17T19:26:14Z
<p>I have several forms each having a hidden field that identifies this form...I want to check for this field in my view then based on the result determine which form will be processed. How should i go about this?</p>
http://stackoverflow.com/questions/1906994/using-django-forms-to-display-and-edit0Using Django Forms to display and edit?D.S. Blank2009-12-15T12:07:03Z2009-12-17T08:18:20Z
<p>I'm wrestling with how to best create HTML pages in Django that can either be used for displaying or editing data. That is, I'd like the field's values to appear as text in display mode, but in their widgets when in edit/add mode. It appears that Django wasn't designed to do this: the fields always appear in their widgets (eg, text input, text area,
etc).</p>
<p>Is there a common technique for handling this, short of using forms for one, and not the other?</p>
<p>I was thinking of a custom templatetag filter that could be used for every form field, like:</p>
<p>{{ form.field_name|render_field:mode }}</p>
<p>where render_field would either return the field's HTML widget, or just the value as text, based on the mode.</p>
<p>Have I missed something, or is this a viable solution?</p>
http://stackoverflow.com/questions/1916593/error-with-django-user-attributeerror-user-object-has-no-attribute-get0Error with Django User : "AttributeError: 'User' object has no attribute 'get' "PhilGo202009-12-16T18:17:06Z2009-12-16T18:23:33Z
<p>Hi, I've just started Django and Python 50 hours ago ;-) so this might be an easy one but I am stuck.</p>
<p>I am using similar 'create' view with similar Form implementation in my project with no problem. In this case, I get the above mentionned error.</p>
<p>I am using Pinax...</p>
<pre><code>2 from django.shortcuts import render_to_response, get_object_or_404
3 from django.template import RequestContext
4 from django.http import HttpResponseRedirect
5 from django.core.urlresolvers import reverse
6 from django.contrib.auth.models import User
7 from django.contrib.auth.decorators import login_required
8 from django.utils.translation import ugettext_lazy as _
9
10 from django.conf import settings
11
12 if "notification" in settings.INSTALLED_APPS:
13 from notification import models as notification
14 else:
15 notification = None
16
17 from location.models import Location
18 from location.forms import LocationForm, LocationUpdateForm
19
20
21 @login_required
22 def create(request, form_class=LocationForm, template_name="location/create.html"):
23 location_form = form_class(request.user, request.POST or None)
24
25
26
27 if location_form.is_valid():
28 location = location_form.save(commit=False)
29 location.creator = request.user
30 location.save()
31 return HttpResponseRedirect(location.get_absolute_url())
32
33 return render_to_response(template_name, {
34 "location_form": location_form,
35 }, context_instance=RequestContext(request))
Traceback (most recent call last):
File "/Users/philgo20/code/LeadMiner/django/core/servers/basehttp.py", line 636, in __call__
File "/Users/philgo20/code/LeadMiner/django/core/handlers/wsgi.py", line 241, in __call__
File "/Users/philgo20/code/LeadMiner/django/core/handlers/base.py", line 134, in get_response
File "/Users/philgo20/code/LeadMiner/django/core/handlers/base.py", line 154, in handle_uncaught_exception
File "/Users/philgo20/code/LeadMiner/django/core/handlers/base.py", line 92, in get_response
File "/Users/philgo20/python/django/trunk/django/contrib/auth/decorators.py", line 78, in __call__
return self.view_func(request, *args, **kwargs)
File "/Users/philgo20/code/jezam_kms/apps/location/views.py", line 27, in create
if location_form.is_valid():
File "/Users/philgo20/code/LeadMiner/django/forms/forms.py", line 120, in is_valid
File "/Users/philgo20/code/LeadMiner/django/forms/forms.py", line 111, in _get_errors
File "/Users/philgo20/code/LeadMiner/django/forms/forms.py", line 234, in full_clean
File "/Users/philgo20/code/LeadMiner/django/forms/widgets.py", line 170, in value_from_datadict
AttributeError: 'User' object has no attribute 'get'
</code></pre>
http://stackoverflow.com/questions/1905664/how-to-customize-form-styled-by-django-uni-form0How to customize form styled by django-uni-form?Continuation2009-12-15T07:04:57Z2009-12-15T21:15:36Z
<p>I'm using django-uni-form to style my form using the filter my_form|as_uni_form:</p>
<pre><code><form class="uniForm" id="my_form" method="post" action="./">
<fieldset class="inlineLabels">
{{ my_form|as_uni_form }}
<div class="form_block">
<input type="submit" value="Submit"/>
</div>
</fieldset>
</form>
</code></pre>
<p>It looks really good. But I need to customize it.</p>
<p>For example, one of the field "percentage" of the form is of the type IntegerField. It is being rendered as an <code><input type="text"></code>. The problem is that the text box is really wide, I'd like to make it only 2 character wide. Also I want to add a percentage sign "%" right after the text box so that users know they if they put in the number "10" in the text box, it means 10%.</p>
<p>Is there anyway to do that with django-uni-form?</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1226760/filter-manytomany-box-in-django-admin2Filter ManyToMany box in Django Adminschmilblick2009-08-04T10:31:43Z2009-12-15T14:59:09Z
<p>I have a object with a many-to-many relation with another object.<br/>
In the Django Admin this results in a very long list in a multiple select box.</p>
<p>I'd like to filter the ManyToMany relation so I only fetch Categories that is available in the City that the Customer have selected.</p>
<p>Is this possible? Will I have to create a widget for it? And if so - how do I copy the behavior from the standard ManyToMany field to it, since I would like the filter_horizontal function as well.</p>
<p>These are my simplified models:</p>
<pre><code>class City(models.Model):
name = models.CharField(max_length=200)
class Category(models.Model):
name = models.CharField(max_length=200)
available_in = models.ManyToManyField(City)
class Customer(models.Model):
name = models.CharField(max_length=200)
city = models.ForeignKey(City)
categories = models.ManyToManyField(Category)
</code></pre>
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-12-15T14:40:19Z
<p>Whenever you use a {{ form.field.errors }} tag in a Django template, the validation message that is displayed is always surrounded with a unordered list tag. This 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/1906350/django-general-template-controled-by-which-variables0Django general template controled by which variables?plmet2009-12-15T10:01:44Z2009-12-15T12:20:57Z
<p>I have been developing some Django app and there's some duplicated code for different Models. I'd like to create a generic table template and pass the Model class, a list of model instances, and Form classes to it so it can render the page and generate the forms to add/delete elements. Then create some generic add/delete views to work with this Forms.</p>
<p>Which would be the correct part to define the configuration of the template for every different Model? Would it be right if I just create some class static variables and functions like:</p>
<pre><code>class Test(models.Model):
# Model
name = models.CharField(max_length=20)
description = models.TextField(blank=True)
# Template configuration
title = "Test"
table_columns = ['name', ] # Columns I want to show in the table
def get_columns(self):
return [self.name, ]
</code></pre>
<p>Or is there some cleaner way to define this kind of things in Django?</p>
<p>EDIT: Seems like some of the information I want to use to configure the Template already has a name and should go inside model.Meta, like verbose_name or verbose_name_plural.</p>
http://stackoverflow.com/questions/1900093/django-registration-custom-registration-form-recaptcha-field0django-registration custom registration form (recaptcha field)Kai2009-12-14T10:23:04Z2009-12-14T13:21:24Z
<p>I try to add a recaptcha field to my registration form and followed Marcos guide: </p>
<p><a href="http://www.marcofucci.com/tumblelog/26/jul/2009/integrating-recaptcha-with-django/" rel="nofollow">http://www.marcofucci.com/tumblelog/26/jul/2009/integrating-recaptcha-with-django/</a></p>
<p>In my registration app, I have a file "forms.py" which looks like this:</p>
<pre><code>from recaptcha import fields as captcha_field
from registration.forms import RegistrationFormUniqueEmail
class RecaptchaRegistrationForm(RegistrationFormUniqueEmail):
recaptcha = captcha_field.ReCaptchaField()
</code></pre>
<p>and a urls.py which gets included under /accounts by my solution wide urls.py:</p>
<pre><code>from django.conf.urls.defaults import *
from registration.views import register
from forms import RecaptchaRegistrationForm
urlpatterns = patterns('trackerbase.users.views',
(r'^$', 'profile'),
url(r'^register/$', register, {'form_class': RecaptchaRegistrationForm}, name='registration_register'),
)
</code></pre>
<p>Now, when I go to /accounts/register/ I get this error message:</p>
<blockquote>
<p>Exception Value: register() takes at least 2 non-keyword arguments (1 given)</p>
</blockquote>
<p>I have no idea why.</p>
http://stackoverflow.com/questions/1897756/different-initial-data-for-each-form-in-a-django-formset1Different initial data for each form in a Django formsetcerial2009-12-13T21:09:45Z2009-12-13T22:52:15Z
<p>Is it possible to prepopulate a formset with different data for each row? I'd like to put some information in hidden fields from a previous view.</p>
<p>According to the docs you can only set initial across the board.</p>
http://stackoverflow.com/questions/1897785/associate-and-display-additional-data-with-each-form-row-in-a-django-formset0Associate and display additional data with each form row in a Django formsetcerial2009-12-13T21:19:02Z2009-12-13T21:19:02Z
<p>I'd like to be able to display additional information like a text label with each row in a Django formset. </p>
<p>Example/usecase:</p>
<p>User picks 5 rows in a model that would he would like some action performed. A popup appears that displays a 5 form formset some additional information (that are model instance methods) based on the 5 rows chosen previously. User does some input, submits forms and 5 new rows are created in a different model.</p>
<p>Currently I'm thinking about passing a dictionary of this additional information in separately and somehow associating them with each form in the formset. But to get that to work I need to be able to set unique initial data for each row so I can use a hidden field for instance (I've posted another question for that specific issue).</p>
<p>It would be neater if I could associate the additional information with the form in a manner that would allow me to iterate through the form on the template or call 'as_table'.</p>
http://stackoverflow.com/questions/1896117/choicefield-render-does-not-distinct-between-empty-string-or-decimal00Choicefield render does not distinct between empty string or Decimal('0')GerardJP2009-12-13T10:33:18Z2009-12-13T13:59:14Z
<p>Hi all,</p>
<p>I've got a form that renders a choicefield widget with a total of 3 choice values: 0, 6, 19 (these are of type "Decimal').</p>
<p>When editing an object via a modelform that has the value 6 or 19 the widget has selected the proper one when rendered, but when the object is stored with the value "Decimal('0') it has selected the empty_label (which was added manually, since the list is not populated from a model when adding new objects)</p>
<p>Populator:</p>
<pre><code>taxlevels = [('', u'---'),]
taxlevels += Metadata.objects.values_list('value', 'display'). \
filter(attribute__startswith='TAX').order_by('attribute')
</code></pre>
<p>Need I subclass the render method to do this?</p>
<p>Thanx!</p>
<p>EDIT: Added code snippets (didn't wanna spam ;)</p>
<p>The form:</p>
<pre><code>class ProductForm(forms.ModelForm):
""" Product Model field specifications for new/edit.
"""
class Meta:
model = Product
def clean(self):
cleaned_data = self.cleaned_data
if cleaned_data.get('tax_level') == '--':
msg = _('Choose a VAT percentage.')
self._errors['tax_level'] = ErrorList([msg])
return cleaned_data
description = forms.CharField(
label = _('Notes'),
help_text = _('Max. 100 characters'),
max_length = 100,
widget = forms.Textarea(attrs =
{'rows': 2, 'cols': 40, 'maxlength': 100}
),
required = False,
)
# -- snip --
btwlevels = [('', u'---'),]
btwlevels += Metadata.objects.values_list('value', 'display'). \
filter(attribute__startswith='BTW').order_by('attribute')
tax_level = forms.ChoiceField(
label = _('VAT'),
choices = btwlevels,
required = True,
)
</code></pre>
<p>The Model:</p>
<pre><code>class Product(models.Model):
""" Product Model
"""
objects=UserFilteredManager()
owner = models.ForeignKey(User, editable=False)
order = models.ForeignKey(Order, editable=False)
name = models.CharField(_('Name'), max_length=50)
description = models.CharField(_('Notes'), max_length=100)
amount = models.DecimalField(_('Amount'), max_digits=10, decimal_places=2)
unit_price = models.DecimalField(_('Unit price'), max_digits=10,
decimal_places=2)
tax_level = models.DecimalField(_('Tax'), max_digits=3, decimal_places=1)
</code></pre>
<p>hope this helps, I'll check the TypedChoiceField in the meantime.</p>
<p>Thanx again.</p>
http://stackoverflow.com/questions/1885293/gae-using-properties-for-keys-in-modelchoiceproperty-boxes0GAE: Using properties for keys() in ModelChoiceProperty boxesPaul Biggar2009-12-11T01:31:49Z2009-12-12T13:06:27Z
<p>I have a model <code>User</code> which appears as a <code>ReferenceProperty</code> in another model, <code>Group</code>.</p>
<p>When I create a form for <code>Group</code>, using <code>Meta</code>, the form's values contain lots of generated strings. I'd like to stop this, and use the <code>username</code> field of <code>User</code> instead.</p>
<p>I already define a <code>key_name</code>. However, <code>str(user.key())</code> still gives a generated string. I could override <code>key()</code>, but that would be bad. Any thoughts? I want the Group form to use <code>username</code>s for the ModelChoiceProperty values, and the form to still validate and save. Currently the form prints the string value of <code>key()</code>, according to the source.</p>
http://stackoverflow.com/questions/1883469/django-how-to-display-validation-errors-not-specific-to-a-field3Django: How to display Validation errors not specific to a field?dannyroa2009-12-10T19:45:00Z2009-12-12T03:36:46Z
<p>I have errors raised in the form's clean method (not tied to a field). </p>
<p>How do I display them in the template?</p>
<p>I tried {{ forms.errors }} and {{ form.non_field_errors }} but neither worked.</p>
http://stackoverflow.com/questions/1891184/how-i-can-get-the-class-of-a-model-in-a-widget-through-modelforms-in-admin0How i can get the class of a model in a widget through ModelForms in Admin?diegueus92009-12-11T22:09:21Z2009-12-11T22:24:47Z
<p>i need make a special widget for ForeignKeys in Admin, but i need get the class of model in the widget, somebody know how i can do it?</p>
<p>I think the Widget have a Field, and Field have a ModelForm, and obviously ModelForm have a Model, but i need this model in a widget in the admin.</p>
http://stackoverflow.com/questions/622982/django-passing-custom-form-parameters-to-formset4Django Passing Custom Form Parameters to Formset Paolo Bergantino2009-03-08T03:36:08Z2009-12-11T12:36:03Z
<p>I have a Django Form that looks like this:</p>
<pre><code>class ServiceForm(forms.Form):
option = forms.ModelChoiceField(queryset=ServiceOption.objects.none())
rate = forms.DecimalField(widget=custom_widgets.SmallField())
units = forms.IntegerField(min_value=1, widget=custom_widgets.SmallField())
def __init__(self, *args, **kwargs):
affiliate = kwargs.pop('affiliate')
super(ServiceForm, self).__init__(*args, **kwargs)
self.fields["option"].queryset = ServiceOption.objects.filter(affiliate=affiliate)
</code></pre>
<p>I call this form with something like this:</p>
<pre><code>form = ServiceForm(affiliate=request.affiliate)
</code></pre>
<p>Where <code>request.affiliate</code> is the logged in user. This works as intended.</p>
<p>My problem is that I now want to turn this single form into a formset. What I can't figure out is how I can pass the affiliate information to the individual forms when creating the formset. According to the docs to make a formset out of this I need to do something like this:</p>
<pre><code>ServiceFormSet = forms.formsets.formset_factory(ServiceForm, extra=3)
</code></pre>
<p>And then I need to create it like this:</p>
<pre><code>formset = ServiceFormSet()
</code></pre>
<p>Now how can I pass affiliate=request.affiliate to the individual forms this way?</p>
http://stackoverflow.com/questions/877723/inline-form-validation-in-django6Inline Form Validation in Djangoallanhenderson2009-05-18T13:23:06Z2009-12-10T23:11:20Z
<p>Newbie request that seems difficult to implement. I would like to make an entire inline formset within an admin change form compulsory.. so in my current scenario when I hit save on an Invoice form (in Admin) the inline Order form is blank. I'd like to stop people creating invoices with no orders associated.</p>
<p>Anyone know an easy way to do that?</p>
<p>Normal validation like (required=True) on the model field doesn't appear to work in this instance.</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1883296/prepopulating-inlines-based-on-the-parent-model-in-the-django-admin0Prepopulating inlines based on the parent model in the Django AdminAlasdair2009-12-10T19:15:50Z2009-12-10T19:15:50Z
<p>I have two models, <code>Event</code> and <code>Series</code>, where each Event belongs to a Series. Most of the time, an Event's <code>start_time</code> is the same as its Series' <code>default_time</code>. </p>
<p>Here's a stripped down version of the models.</p>
<pre><code>#models.py
class Series(models.Model):
name = models.CharField(max_length=50)
default_time = models.TimeField()
class Event(models.Model):
name = models.CharField(max_length=50)
date = models.DateField()
start_time = models.TimeField()
series = models.ForeignKey(Series)
</code></pre>
<p>I use inlines in the admin application, so that I can edit all the Events for a Series at once. </p>
<p>If a series has already been created, I want to prepopulate the <code>start_time</code> for each inline Event with the Series' <code>default_time</code>. So far, I have created a model admin form for Event, and used the <code>initial</code> option to prepopulate the time field with a fixed time.</p>
<pre><code>#admin.py
...
import datetime
class OEventInlineAdminForm(forms.ModelForm):
start_time = forms.TimeField(initial=datetime.time(18,30,00))
class Meta:
model = OEvent
class EventInline(admin.TabularInline):
form = EventInlineAdminForm
model = Event
class SeriesAdmin(admin.ModelAdmin):
inlines = [EventInline,]
</code></pre>
<p>I am not sure how to proceed from here. Is it possible to extend the code, so that the initial value for the <code>start_time</code> field is the Series' <code>default_time</code>? </p>
http://stackoverflow.com/questions/1882825/for-a-foreignkey-field-in-a-form-how-do-you-display-a-widget-other-than-a-select0For a ForeignKey field in a form, how do you display a widget other than a Select menu?MikeN2009-12-10T17:57:20Z2009-12-10T18:38:07Z
<p>I have a modelchoicefield that has too many valid options to really show in a menu. How can I tell Django forms to use another widget that won't take up as much space rendering? </p>
<p>I want to use a HiddenField and I have another widget on the screen taht will populate it. If the hiddenfield has no value I keep getting form validation errors on it even though it is marked as required=false</p>
http://stackoverflow.com/questions/1882616/pass-an-initial-value-to-a-django-form-field0Pass an initial value to a Django form fieldAP2572009-12-10T17:29:14Z2009-12-10T18:11:20Z
<p>Django newbie question....</p>
<p>I'm trying to write a search form and maintain the state of the input box between the search request and the search results.</p>
<p>Here's my form:</p>
<pre><code>class SearchForm(forms.Form):
q = forms.CharField(label='Search: ', max_length=50)
</code></pre>
<p>And here's my views code:</p>
<pre><code>def search(request, q=""):
if (q != ""):
q = q.strip()
form = SearchForm(initial=q)
#get results here...
return render_to_response('things/search_results.html',
{'things': things, 'form': form, 'query': q})
elif (request.method == 'POST'): # If the form has been submitted
form = SearchForm(request.POST)
if form.is_valid():
q = form.cleaned_data['q']
# Process the data in form.cleaned_data
return HttpResponseRedirect('/things/search/%s/' % q) # Redirect after POST
else:
form = SearchForm()
return render_to_response('things/search.html', {
'form': form,
})
else:
form = SearchForm()
return render_to_response('things/search.html', {
'form': form,
})
</code></pre>
<p>But this gives me the error: </p>
<pre><code>Caught an exception while rendering: 'unicode' object has no attribute 'get'
</code></pre>
<p>How can I pass the initial value? Various things I've tried seem to interfere with the request.POST parameter. </p>
http://stackoverflow.com/questions/1875091/how-to-make-a-workflow-form3How to make a "workflow" formGhislain Leveque2009-12-09T16:32:50Z2009-12-10T15:09:56Z
<p>Hi there</p>
<p>For my project I need many "workflow" forms. I explain myself:</p>
<p>The user selects a value in the first field, validates the form and new fields appear depending on the first field value. Then, depending on the others fields, new fields can appear...</p>
<p>How can I implement that in a generic way ?</p>
http://stackoverflow.com/questions/1875956/how-can-i-access-an-uploaded-file-in-universal-newline-mode0How can I access an uploaded file in universal-newline mode?Zach2009-12-09T18:45:07Z2009-12-10T12:26:45Z
<p>I am working with a file uploaded using Django's <code>forms.FileField</code>. This returns an object of type <code>InMemoryUploadedFile</code>.</p>
<p>I need to access this file in universal-newline mode. Any ideas on how to do this without saving and then reopening the file?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1878369/in-django-form-custom-selectfield-and-selectmultiplefield1In Django form, custom SelectField and SelectMultipleFieldNatim2009-12-10T02:54:18Z2009-12-10T08:56:29Z
<p>I am using Django everyday now for three month and it is really great. Fast web application development.</p>
<p>I have still one thing that I cannot do exactly how I want to.
It is the SelectField and SelectMultiple Field.</p>
<p>I want to be able to put some args to an option of a Select.</p>
<p>I finally success with the optgroup :</p>
<pre><code>class EquipmentField(forms.ModelChoiceField):
def __init__(self, queryset, **kwargs):
super(forms.ModelChoiceField, self).__init__(**kwargs)
self.queryset = queryset
self.to_field_name=None
group = None
list = []
self.choices = []
for equipment in queryset:
if not group:
group = equipment.type
if group != equipment.type:
self.choices.append((group.name, list))
group = equipment.type
list = []
else:
list.append((equipment.id, equipment.name))
</code></pre>
<p>But for another ModelForm, I have to change the background color of every option, using the color property of the model.</p>
<p>Do you know how I can do that ?</p>
<p>Thank you.</p>
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-12-09T19:31:09Z
<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/1871746/django-form-not-calling-cleanfieldname0Django form not calling clean_<fieldname>SapphireSun2009-12-09T05:21:19Z2009-12-09T18:53:41Z
<p>Hello everyone,</p>
<p>I am attempting to validate a form (and it used to work before). For some reason, I can't seem to get the various cleaning functions such as clean_username(self) to get called when form.is_valid() is called. </p>
<p>I know there are not nearly enough checks yet (they are under construction you see ;-) ), but here are my classes:</p>
<pre><code> class LoginForm(forms.Form):
username = forms.CharField(max_length=30)
password = forms.CharField(max_length=30,widget=forms.PasswordInput)
def clean_password(self):
print "Cleaning password"
password = self.cleaned_data['password']
if password == u"":
raise forms.ValidationError("Password is blank.")
return password
def clean_username(self):
username = self.cleaned_data['username']
if len(username) < 4:
raise forms.ValidationError("Username is fewer than four charecters.")
return username
class RegistrationForm( LoginForm ):
confirm_password = forms.CharField(widget=forms.PasswordInput, max_length=30)
email = forms.EmailField()
def clean_confirm_password(self):
print "Cleaning confirm password"
clean_confirm_password = self.cleaned_data['confirm_password']
if clean_confirm_password == u"":
raise forms.ValidationError("Confirming password is blank.")
return clean_confirm_password
def clean(self):
print "Running clean on a registration form"
print self.cleaned_data.items()
password = self.cleaned_data['password']
confirm = self.cleaned_data['confirm_password']
if password != confirm:
raise forms.ValidationError('Passwords do not match.')
return self.cleaned_data
</code></pre>
<p>Thank you!</p>
http://stackoverflow.com/questions/1875316/validate-image-size-in-django-admin0Validate image size in django adminApreche2009-12-09T17:02:27Z2009-12-09T18:12:38Z
<p>I see a lot of people with Django apps that have image uploads are automatically resizing the images after they are uploaded. That is well and good for some cases, but I don't want to do this. Instead, I simply want to force the user to upload a file that is already the proper size. </p>
<p>I want to have an ImageField where I force the user to upload an image that is 100x200. If the image they upload is not exactly that size, I want the admin form to return as invalid. I would also like to be able to do the same thing for aspect ratios. I want to force the user to upload an image that is 16:9 and reject any upload that does not conform.</p>
<p>I already know how to get the width and height of the image, but I can't do that server-side until after the image is already uploaded, and the form is submitted successfully. How can I check this earlier, if possible?</p>
http://stackoverflow.com/questions/297383/dynamically-update-modelforms-meta-class3Dynamically update ModelForm's Meta classashchristopher2008-11-17T23:44:27Z2009-12-09T02:13:14Z
<p>I am hoping to dynamically update a ModelForm's inline Meta class from my view. Although this code seems to update the exclude list in the Meta class, the output from <code>as_p()</code>, <code>as_ul()</code>, etc does not reflect the updated Meta exclude.</p>
<p>I assume then that the html is generated when the ModelForm is created not when the <code>as_*()</code> is called. Is there a way to force the update of the HTML? </p>
<p>Is this even the best way to do it? I just assumed this <em>should</em> work.</p>
<p>Thoughts?</p>
<pre><code>from django.forms import ModelForm
from testprogram.online_bookings.models import Passenger
class PassengerInfoForm(ModelForm):
def set_form_excludes(self, exclude_list):
self.Meta.exclude = excludes_list
class Meta:
model = Passenger
exclude = []
</code></pre>