0
votes
1answer
19 views
Only validate certain fields if a BooleanField is set
Scenario: I'm building an order-form. Like every other order-form on the planet, it has separate invoicing shipping addresses. I've just added a "Use billing address" checkbox to let the user save …
0
votes
1answer
20 views
Get type of Django form widget from within template
I'm iterating through the fields of a form and for certain fields I want a slightly different layout, requiring altered HTML.
To do this accurately, I just need to know the widget type. It's class …
4
votes
1answer
66 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 …
0
votes
1answer
40 views
how to insert a infomation on a table in Django
This is my form on models.py
class ItemForm(forms.Form):
itemname = forms.CharField(max_length=100)
itemwording = forms.CharField(max_length=100)
notes = forms.CharField()
abundance …
0
votes
2answers
30 views
ChoiceField doesn’t display an empty label when using a tuple - am I doing something wrong?
What I'm trying to do
I'm going to be keeping data about competitions in my database. I want to be able to search the competitions by certain criteria - competition type in particular.
About …
1
vote
1answer
42 views
Customize the html output of Django’s form validation
Whenever you use a {{ form.field.errors }} tag in a Django template, when the validation message is displayed it is always surrounded with a unordered list tag which is not ideal for me. Am I able to …
0
votes
2answers
43 views
Django: provide choices list to a checkbox from a view function
Hi, in my Django application I've got a form with a ChoiceField that normally allows to choice between a range of integer values.
class FormNumber(forms.Form):
list=[]
for i in range(1, 11):
…
1
vote
1answer
56 views
what is attr ‘gtbfieldid’ and how to avoid autocomplete behavior ?
Hi, 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 …
3
votes
2answers
73 views
How to create a UserProfile form in Django with first_name, last_name modifications ?
If think my question is pretty obvious and almost every developer working with UserProfile should be able to answer it.
However, I could not find any help on the django documentation or in the Django …
0
votes
2answers
39 views
Custom save method giving invalid tuple size error
I've been stuck on this likely very simple problem, but haven't gotten anywhere with it (newbie to Python and Django). I'm taking some user submitted data and using weights to calculate a score. …
1
vote
1answer
50 views
Customize HTML Output of Django ModelForm
I am trying to add multiple inline form items to a page using Djangos ModelForms. I need Select boxes bound to database models. The forms are formatted and placed in a tabular format so I need to …
1
vote
1answer
39 views
Alternate forms libraries on django eg sprox, formalchemy
Has anyone had any joy/pain with using other form libraries in django projects (with SQLAlchemy models initially, but perhaps to use with django models in future)?
Initial impressions are that sprox …
1
vote
1answer
42 views
Python/Django Model overriding the cleaned data
Hello I am currently working on a django project, in one of my Models I have a file upload and image upload, with the parameters of these two fields both are set to blank=True, however there is a …
2
votes
1answer
30 views
Editing both sides of M2M in Admin Page
Hello all,
First I'll lay out what I'm trying to achieve in case there's a different way to go about it!
I want to be able to edit both sides of an M2M relationship (preferably on the admin page …
0
votes
1answer
38 views
django, uni_form and python’s __init__() function - how to pass arguments to a form?
I'm having a bit of difficulty understanding how the python __init__( ) function works. What I'm trying to do is create a new form in django, and use the uni_form helper to display the form in a …
