Tagged Questions
Specific questions related to forms with the django web framework
45
votes
5answers
31k views
How do I use CSS in Django?
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?
NB: On a local machine
42
votes
4answers
18k views
How do I filter ForeignKey choices in a Django ModelForm?
Say I have the following in my models.py:
class Company(models.Model):
name = ...
class Rate(models.Model):
company = models.ForeignKey(Company)
name = ...
class Client(models.Model):
...
31
votes
7answers
6k views
How does Django Know the Order to Render Form Fields?
If I have a Django form such as:
class ContactForm(forms.Form):
subject = forms.CharField(max_length=100)
message = forms.CharField()
sender = forms.EmailField()
And I call the ...
30
votes
6answers
8k 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 = ...
25
votes
2answers
9k views
How can I build multiple submit buttons django form?
I have form with one input for email and two submit buttons to subscribe and unsubscribe from newsletter:
<form action="" method="post">
{{ form_newsletter }}
<input type="submit" ...
22
votes
4answers
9k views
Django: multiple models in one template using forms
I'm building a support ticket tracking app and have a few models I'd like to create from one page. Tickets belong to a Customer via a ForeignKey. Notes belong to Tickets via a ForeignKey as well. I'd ...
20
votes
5answers
7k views
How do you change the default widget for all Django date fields in a ModelForm?
Given a set of typical models:
# Application A
from django.db import models
class TypicalModelA(models.Model):
the_date = models.DateField()
# Application B
from django.db import models
class ...
20
votes
4answers
5k views
Pre-populate an inline FormSet?
I'm working on an attendance entry form for a band. My idea is to have a section of the form to enter event information for a performance or rehearsal. Here's the model for the event table:
class ...
19
votes
1answer
18k views
Overriding the save method in Django ModelForm
I'm having trouble overriding a modelform save method. This is the error I'm receiving:
Exception Type: TypeError
Exception Value:
save() got an unexpected keyword argument 'commit'
My ...
17
votes
3answers
3k views
Putting a django login form on every page
I'd like the login form (AuthenticationForm from django.contrib.auth) to appear on every page in my site if the user is not logged in. When the user logs in, they will be redirected to the same page. ...
17
votes
4answers
5k 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 ...
16
votes
6answers
6k views
Django templates: verbose version of a choice
I have a model:
from django.db import models
CHOICES = (
('s', 'Glorious spam'),
('e', 'Fabulous eggs'),
)
class MealOrder(models.Model):
meal = models.CharField(max_length=8, ...
16
votes
7answers
7k views
Django BooleanField as radio buttons?
Is there a widget in Django 1.0.2 to render a models.BooleanField as two radio buttons instead of a checkbox?
13
votes
6answers
4k views
Django forms, inheritance and order of form fields
I'm using Django forms in my website and would like to control the order of the fields.
Here's how I define my forms:
class edit_form(forms.Form):
summary = forms.CharField()
description = ...
12
votes
1answer
4k views
Django Imagefield not working properly via ModelForm
I'm certain I'm doing something really obviously stupid, but I've been trying to figure it out for a few hours now and nothing is jumping out at me.
I'm using a ModelForm so I can expose a few fields ...
11
votes
3answers
1k views
Unique BooleanField value in Django?
Suppose my models.py is like so:
class Character(models.Model):
name = models.CharField(max_length=255)
is_the_chosen_one = models.BooleanField()
I want only one of my Character instances ...
11
votes
1answer
6k views
Django, ModelChoiceField() and initial value
I'm using something like this:
field1 = forms.ModelChoiceField(queryset=...)
How can I make my form show the a value as selected?
11
votes
2answers
4k views
Prepopulate Django (non-Model) Form
I'm trying to prepopulate the data in my django form based on some information, but NOT using ModelForm, so I can't just set the instance.
This seems like it should be really easy, but for some ...
11
votes
3answers
4k views
Django form - set label
I have a form that inherits from 2 other forms. In my form, I want to change the label of a field that was defined in one of the parent forms. Does anyone know how this can be done?
I'm trying to do ...
10
votes
2answers
1k views
Tutorials on writing custom Django widgets?
I'm trying to modify the Django Admin interface. I need a custom type of textbox that does some pre/post processing on the text. If I understand correctly, a custom widget is the way to go about this.
...
9
votes
4answers
9k views
Django-Registration & Django-Profile, using your own custom form
I am making use of django-registration and django-profile to handle registration and profiles. I would like to create a profile for the user at the time of registration. I have created a custom ...
9
votes
6answers
5k views
Django ModelForm for Many-to-Many fields
Consider the following models and form:
class Pizza(models.Model):
name = models.CharField(max_length=50)
class Topping(models.Model):
name = models.CharField(max_length=50)
ison = ...
9
votes
1answer
3k views
Django multi-select widget?
The Django admin site makes use of a really cool widget:
How can I make use of this widget in my own applications? I don't see anything like that listed here.
9
votes
4answers
2k views
Can Django admin handle a one-to-many relationship via related_name?
The Django admin happily supports many-to-one and many-to-many relationships through an HTML <SELECT> form field, allowing selection of one or many options respectively. There's even a nice ...
9
votes
6answers
7k views
Filter ManyToMany box in Django Admin
I have a object with a many-to-many relation with another object.
In the Django Admin this results in a very long list in a multiple select box.
I'd like to filter the ManyToMany relation so I only ...
9
votes
5answers
7k views
Customize/remove Django select box blank option
I'm using Django 1.0.2. I've written a ModelForm backed by a Model. This model has a ForeignKey where blank=False. When Django generates HTML for this form it creates a select box with one option ...
9
votes
4answers
3k views
What are the steps to make a ModelForm work with a ManyToMany relationship with an intermediary model in Django?
I have a Client and Groupe Model.
A Client can be part of multiple groups.
Clients that are part of a group can use its group's free rental rate at anytime but only once. That is where the ...
8
votes
4answers
4k views
Creating a dynamic choice field
I'm having some trouble trying to understand how to create a dynamic choice field in django. I have a model set up something like:
class rider(models.Model):
user = models.ForeignKey(User)
...
8
votes
3answers
591 views
Django Comments: Want to remove user URL, not expand the model. How to?
I'm totally understanding the documentation on expanding the Comments app in Django, and really would like to stick with the automatic functionality but...
In the current app, I have absolutely no ...
8
votes
3answers
2k views
Returning pure Django form errors in JSON
I have a Django form which I'm validating in a normal Django view. I'm trying to figure out how to extract the pure errors (without the HTML formatting). Below is the code I'm using at the moment.
...
8
votes
1answer
440 views
Banned IPs in Django form validation
I am trying to validate a form, such that if IP of user (request.META['REMOTE_ADDR']) is in a table BlockedIPs, it would fail validation. However I don't have access to request variable in Form. How ...
8
votes
3answers
5k views
Django: ModelMultipleChoiceField doesn't select initial choices
ModelMultipleChoiceField doesn't select initial choices and I can't make the following fix (link below) work in my example:
http://code.djangoproject.com/ticket/5247#comment:6
My models and form:
...
8
votes
3answers
2k views
Variable number of inputs with Django forms possible?
Is it possible to have a variable number of fields using django forms?
The specific application is this:
A user can upload as many pictures as they want on the image upload form. Once the pictures ...
7
votes
2answers
1k views
Max image size on file upload
I have an ImageField in my form. How would I enforce a file size min/max, something like --
image = forms.ImageField(max_size = 2MB)
or
image = forms.ImageField(min_size = 100k)
Thank you.
7
votes
2answers
203 views
Django: how to change the choices of AdminTimeWidget
The AdminTimeWidget rendered in admin for a DateTimeField displays an icon of a clock and when you click you have the choice between: "Now Midnight 6:00 Noon".
How can I change these choices to "16h ...
7
votes
3answers
1k views
custom error messages with Model Form
I can see how to add an error message to a field when using forms, but what about model form?
This is my test model
class Author(models.Model):
first_name = models.CharField(max_length=125)
...
7
votes
4answers
2k views
Django: How to get current user in admin forms
In Django's ModelAdmin I need to display forms customized according to the permissions an user has. Is there a way of getting the current user object into the form class, so that i can customize the ...
7
votes
4answers
2k views
Django Forms with get_or_create
Hi
I am using Django ModelForms to create a form. I have my form set up and it is working ok.
form = MyForm(data=request.POST)
if form.is_valid():
form.save()
What I now want though is for ...
7
votes
1answer
919 views
Jquery in Django: Which django apps should I look into?
I want to use some jquery in my forms and I was hoping to use some ready made solutions - there seem to be a lot of them...
Which django apps would you recommend for this purpose? Which are most ...
7
votes
1answer
432 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.
7
votes
1answer
4k views
what is attr 'gtbfieldid' and how to avoid autocomplete behavior?
I have this simple form:
class PagoDesde(forms.Form):
from django import forms as f
desde = f.DateField(input_formats=['%d/%m/%Y'])
In my template:
{{ form.desde }}
And has ...
7
votes
5answers
919 views
Grouping dates in Django
My question is almost exactly the same as this post, except that I'm using Python and Django instead of PHP.
The task is to take:
id date
1 2009-01-01 10:15:23
2 2009-01-01 13:21:29
3 ...
7
votes
3answers
2k views
Dynamically update ModelForm's Meta class
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 as_p(), as_ul(), etc does not ...
6
votes
2answers
1k views
How to get form field's id in Django?
Is there any way to get the id of a field in a template?
In the HTML i get: <input name="field_name" id="id_field_name"...
I know I can get the name with {{ field.html_name }}, but is there ...
6
votes
1answer
2k views
Why are read-only form fields in Django a bad idea?
I've been looking for a way to create a read-only form field and every article I've found on the subject comes with a statement that "this is a bad idea". Now for an individual form, I can understand ...
6
votes
1answer
687 views
Writing custom Django form fields and widgets
Django has very good documentation that describes how to write custom database fields and custom template tags and filters. I cannot find the document that describes how to write custom form fields ...
6
votes
2answers
1k views
How do I display the Django '__all__' form errors in the template?
I have the following form code:
# forms.py
class SomeForm(forms.Form):
hello = forms.CharField(max_length=40)
world = forms.CharField(max_length=40)
def clean(self):
raise ...
6
votes
4answers
822 views
Django Admin: Detect if a subset of an object fields has changed and which of them
I need to detect when some of the fields of certain model have changed in the admin, to later send notifications depending on which fields changed and previous/current values of those fields.
I tried ...
6
votes
3answers
1k views
Paginating the results of a Django forms POST request
I'm using Django Forms to do a filtered/faceted search via POST, and I would like to Django's paginator class to organize the results. How do I preserve the original request when passing the client ...
6
votes
1answer
983 views
passing arguments to a dynamic form in django
I have a Dynamic Form in forms. How can I pass a argument from my view when I instantiate my form.
something like
form = DynamicForm("some string argument")
This is the form I have:
class ...