8
votes
4answers
3k 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):
…
7
votes
3answers
939 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 …
7
votes
5answers
1k 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 …
6
votes
2answers
112 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 …
6
votes
1answer
470 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 …
6
votes
4answers
1k 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 …
5
votes
3answers
781 views
django BooleanField as radio buttons?
In django 1.0.2 Is there a widget to render a models.BooleanField as two radio buttons instead of a checkbox?
5
votes
4answers
1k 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 …
5
votes
1answer
233 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 …
5
votes
5answers
3k 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
4
votes
2answers
88 views
Complex forms in Django - what apps and Django/Python features should I look at?
There are a lot of complex forms in my project and I keep getting the feeling that I could be coding them much more elegantly and simply.
So my question is what are some good apps and practices that …
4
votes
2answers
567 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 …
4
votes
2answers
723 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 …
4
votes
2answers
551 views
Django Admin Template Overriding: Displaying checkboxselectmultiple widget
Have 2 tables Domain and Group having one to many relationship.
These tables have many to many relationship with User table
On the User admin interface I am rendering the Group and Domain as …
4
votes
2answers
991 views
Modify value of a Django form field during clean()
I am adding custom validation to my forms and custom fields in my Django app. I would like to be able to modify the value of a field when triggering an error. For example, if there is an error, the …
