Tagged Questions

0
votes
2answers
19 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
2answers
19 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
33 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
3answers
50 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
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
48 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
1answer
23 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
41 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
21 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
23 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
2answers
24 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
2answers
38 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
1answer
30 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
1answer
13 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 …
3
votes
4answers
62 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. …

1 2 3 4 5 19 next
15 30 50 per page