0
votes
3answers
44 views
Django error: got multiple values for keyword argument
I get the following error when instantiating a Django form with a the constructor overriden:
__init__() got multiple values for keyword argument 'collection_type'
The __init__() function (shown …
0
votes
1answer
20 views
Caching Django query results for __unicode__ calls that refer to related objects
I have the following models:
class Territory(models.Model):
name = models.CharField(max_length=30)
power = models.ForeignKey(Power, null=True, blank=True)
is_supply = …
0
votes
2answers
25 views
Check for a hidden form variable in a view
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 …
0
votes
1answer
44 views
Error with Django User : “AttributeError: ‘User’ object has no attribute ‘get’ “
Hi, I've just started Django and Python 50 hours ago ;-) so this might be an easy one but I am stuck.
I am using similar 'create' view with similar Form implementation in my project with no problem. …
0
votes
2answers
48 views
Django general template controled by which variables?
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 …
0
votes
3answers
63 views
django-registration custom registration form (recaptcha field)
I try to add a recaptcha field to my registration form and followed Marcos guide:
http://www.marcofucci.com/tumblelog/26/jul/2009/integrating-recaptcha-with-django/
In my registration app, I have a …
0
votes
3answers
54 views
Using Django Forms to display and edit?
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 …
0
votes
2answers
24 views
Use <optgroup> with form.fields.queryset?
Is it possible to set a form's ForeignKey field's queryset so that it will take separate queryset's and output them in <optgroup>'s?
Here is what I have:
views.py
form = …
0
votes
1answer
27 views
How to customize form styled by django-uni-form?
I'm using django-uni-form to style my form using the filter my_form|as_uni_form:
<form class="uniForm" id="my_form" method="post" action="./">
<fieldset class="inlineLabels">
…
1
vote
1answer
48 views
Different initial data for each form in a Django formset
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.
According to the docs you can only set initial across …
0
votes
2answers
48 views
Pass an initial value to a Django form field
Django newbie question....
I'm trying to write a search form and maintain the state of the input box between the search request and the search results.
Here's my form:
class SearchForm(forms.Form):
…
0
votes
2answers
25 views
GAE: Using properties for keys() in ModelChoiceProperty boxes
I have a model User which appears as a ReferenceProperty in another model, Group.
When I create a form for Group, using Meta, the form's values contain lots of generated strings. I'd like to stop …
0
votes
1answer
32 views
For a ForeignKey field in a form, how do you display a widget other than a Select menu?
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?
I want to use a …
3
votes
4answers
69 views
How to make a “workflow” form
Hi there
For my project I need many "workflow" forms. I explain myself:
The user selects a value in the first field, validates the form and new fields appear depending on the first field value. …
0
votes
2answers
40 views
Django form not calling clean_<fieldname>
Hello everyone,
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 …
