Tagged Questions

0
votes
1answer
32 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.CharFi …
0
votes
2answers
23 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 partic …
0
votes
2answers
39 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 ra …
1
vote
1answer
31 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 f …
0
votes
1answer
32 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.desd …
3
votes
2answers
67 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 documentat …
1
vote
1answer
34 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 form …
1
vote
1answer
34 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 impress …
2
votes
1answer
111 views

Django multi-select widget?

The Django admin site makes use of a really cool widget: How can I make use of this widget in my own applications? I don't see anything like that listed here.
1
vote
1answer
40 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, how …
0
votes
2answers
71 views

How to pass initial parameter to django’s ModelForm instance?

The particular case I have is like this: I have a Transaction model, with fields: from, to (both are ForeignKeys to auth.User model) and amount. In my form, I'd like to present th …
0
votes
2answers
36 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 cal …
0
votes
2answers
124 views

Django Formsets - form.is_valid() is False preventing formset validation

I'm am utilizing a formset to enable users subscribe to multiple feeds. I require a) Users chose a subscription by selecting a boolean field, and are also required to tag the subsc …
0
votes
1answer
32 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 …
2
votes
1answer
26 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 o …

1 2 3 4 5 16 next
15 30 50 per page