Tagged Questions

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 …
0
votes
0answers
4 views

Django modelform: exclude fields by regex

I have a "Villa" Model with lots of descriptive TextFields. For each TextField, I have a copy which will be the Russian translation of the original field, which I'm naming by appending "_ru", for …
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 …
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 …
0
votes
2answers
38 views

Django is_valid() not working with modelformset_factory

I've created a simple contact form using the modelformset_factory to build the form in the view using the DB model. The issue that I am having is that the is_valid() check before the save() is not …
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
1answer
40 views

Django MultiWidget Phone Number Field

I want to create a field for phone number input that has 2 text fields (size 3, 3, and 4 respectively) with the common "(" ")" "-" delimiters. Below is my code for the field and the widget, I'm …
0
votes
1answer
42 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
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 …
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): …
2
votes
1answer
66 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
76 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
0answers
14 views

Django select record based on search results

I am a complete beginner trying to build an inventory app in Django by copying examples. There are two models of interest, a item record and a name record. The item has a primary key - the …
0
votes
2answers
42 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 2 3 4 5 16 next
15 30 50 per page