0
votes
3answers
40 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 …
1
vote
1answer
33 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
0answers
19 views
Associate and display additional data with each form row in a Django formset
I'd like to be able to display additional information like a text label with each row in a Django formset.
Example/usecase:
User picks 5 rows in a model that would he would like some action …
0
votes
2answers
21 views
Choicefield render does not distinct between empty string or Decimal(’0’)
Hi all,
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').
When editing an object via a modelform that has the value 6 or 19 …
0
votes
1answer
10 views
Auto-populated fields, Django forms on GAE
class Story(db.Model):
title = db.StringProperty(required=True)
slug = db.StringProperty(required=True)
I'm working with Django's forms on Google App Engine.
I want to automatically …
0
votes
2answers
21 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 …
3
votes
1answer
33 views
Django: How to display Validation errors not specific to a field?
I have errors raised in the form's clean method (not tied to a field).
How do I display them in the template?
I tried {{ forms.errors }} and {{ form.non_field_errors }} but neither worked.
0
votes
1answer
8 views
How i can get the class of a model in a widget through ModelForms in Admin?
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?
I think the Widget have a Field, and Field have a ModelForm, and …
3
votes
5answers
2k views
Django Passing Custom Form Parameters to Formset
I have a Django Form that looks like this:
class ServiceForm(forms.Form):
option = forms.ModelChoiceField(queryset=ServiceOption.objects.none())
rate = …
6
votes
2answers
499 views
Inline Form Validation in Django
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 …
0
votes
0answers
19 views
Prepopulating inlines based on the parent model in the Django Admin
I have two models, Event and Series, where each Event belongs to a Series. Most of the time, an Event's start_time is the same as its Series' default_time.
Here's a stripped down version of the …
0
votes
1answer
28 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 …
0
votes
2answers
36 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):
…
3
votes
4answers
60 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
1answer
27 views
How can I access an uploaded file in universal-newline mode?
I am working with a file uploaded using Django's forms.FileField. This returns an object of type InMemoryUploadedFile.
I need to access this file in universal-newline mode. Any ideas on how to do …
