0
votes
2answers
33 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 …
1
vote
3answers
168 views
Models unique_together constraint + None = fail?
2 questions:
How can I stop duplicates from being created when parent=None and name is the same?
Can i call a model method from within the form?
Please see full details below:
models.py
class …
1
vote
1answer
22 views
Binding Files to Forms in Django
Hello everyone,
I'm trying to create a form where users can save their progress. I have successfully managed to upload files when they are saved, but for some reason the following code leaves the …
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):
…
0
votes
1answer
28 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 …
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
1answer
73 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
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 …
0
votes
1answer
41 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
3answers
152 views
How to save fields that are not part of form but required in Django
I have a model with a field that is required but not entered by the user and i have a hard time saving the model without errors. My model definition looks like this:
class Goal(db.Model):
author = …
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
43 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 …
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
61 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 …
0
votes
2answers
41 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. …
