Top "Django-forms" questions

Specific questions related to forms with the Django web framework

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 …

django django-admin django-forms many-to-many django-widget
How can I order fields in Django ModelForm?

I have an 'order' Model: class Order(models.Model): date_time=models.DateTimeField() # other stuff And I'm using Django ModelForm …

python sorting django-forms
Django form with BooleanField always invalid unless checked

I have an application that uses the following form: class ConfirmForm(forms.Form): account_name = forms.CharField(widget=forms.HiddenInput) …

django django-forms
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 …

django django-forms django-admin username
resize image on save

How can I easily resize an image after it has been uploaded in Django? I am using Django 1.0.2 and I've …

django django-forms image-manipulation
How to render django form field in template

I want to make a page with a list of users and checkboxes that signal if a user is selected, …

python django django-forms django-templates django-template-filters
ChoiceField doesn't display an empty label when using a tuple

What I'm trying to do I'm going to be keeping data about competitions in my database. I want to be …

python django django-forms
login Page by using django forms

I am New beginner in python and django... i want to know how can i create a login form by …

django django-forms django-authentication
django: taking input and showing output in the same page

I am quite new to django and struggling to do something very simple. I have a ModelForm for the following …

django django-forms modelform
Can I have a Django form without Model

Can I have a Form in my template which is not backed by a model. I do not need to …

python django django-models django-forms django-views