Specific questions related to forms with the django web framework

learn more… | top users | synonyms (2)

0
votes
1answer
13 views

Django - Create a non-model form field in my model form filed

I'm hoping this makes sense, here is what I want to do (for whatever reason). I would like to create a non-model form field within my model form? For example, below I have a model form, I would like ...
1
vote
1answer
24 views

Representing ManyToMany relation in Django as two multichoices

I have some many2many fields with a lot of options to choose from and I'd like to have two multichoices for each one, on the left the available options and on the right side the chosen ones. Here is ...
0
votes
1answer
27 views

Django image file not getting uploaded

models.py class Report(models.Model): user = models.ForeignKey(User, null=False) photo_files_attached = models.BooleanField('Photos', default=False) forms.py class ...
0
votes
1answer
25 views

django admin - overriding changelist_view for single entry models

I have a model for which i'll have one single instance, so i need to override the changelist_view to by-pass it (only if i have at least one record saved), and jump directly to change_view. i found ...
2
votes
1answer
39 views

Django: validating several fields

In the Django Documentation, the suggested way to validate fields that depend on each other is in the form's clean() method. It makes sense, but the problem I'm dealing with is how to notify the view ...
0
votes
2answers
23 views

Caught KeyError while rendering: 'phone_mobile'

forms.py class UserCreateProfileForm(forms.ModelForm): phone_daytime = forms.IntegerField(required=False) phone_mobile = forms.IntegerField(required=False) class Meta: model = ...
0
votes
1answer
14 views

Django imageField not validating - Why?

I have a model: class PartnerPrefs(models.Model): partner = models.ForeignKey(Partner) theme = models.IntegerField() email = models.EmailField() logo_file = ...
0
votes
0answers
27 views

Django ModelChoiceField and performance with >100 formset forms

I have a CustomerForm in Django that contains a formset with a list of Meters. Customers have meters and meters are located at facilities owned by customers. The form allows users to assign meters ...
0
votes
0answers
20 views

Django compare multiple select form with model data and update

I have a a form: class PartnerProductsForm(forms.Form): product = forms.MultipleModelChoiceField( queryset=Product.objects.all(), widget=forms.CheckboxSelectMultiple( ...
0
votes
2answers
21 views

Django How to override default form error messages

forms.py class PhoneForm(forms.ModelForm): emergency_number = forms.IntegerField(required=False,error_messages={'required': 'Enter a valid phone number'}) While validating the entered data is ...
1
vote
1answer
21 views

Django ModelMultipleChoiceField eliminated from POST when using jquery.post

I'm not sure what to do about this one. I have a django form with two ModelMultipleChoiceField fields. They show up properly in the web page, with the correct objects as options in the Select. I ...
0
votes
1answer
13 views

Django multiple select form - TypeError: int() argument must be a string or a number, not 'list'

Hi I have a form like so: class PartnerProductsForm(forms.Form): product = forms.ModelChoiceField( queryset=Product.objects.all(), widget=forms.CheckboxSelectMultiple( ...
0
votes
1answer
15 views

Django: how to display form errors for each model object

views.py def add_phone(request): user=request.user try: phone = Phone_info.objects.get(user=request.user) except: phone = None save_msg = '' form_error = False ...
1
vote
2answers
40 views

'FormHelper' object has no attribute 'append' while using crispy_forms in django

I'm new to Django, and I am trying to style forms with crispy forms. I have a form in my app which happens to be a modelform, and I've followed what has been said here ...
0
votes
1answer
22 views

validate text field and number

forms.py class PhoneinfoForm(forms.ModelForm): pname = forms.CharField(required=True) pnumber = forms.IntegerField(required=True) gname = forms.CharField(required=False) gnumber = ...
0
votes
0answers
14 views

Django: Editing manytomany through model via list

I'm attempting to create an rpg character generator and I'm having trouble getting the character form to behave how I want it to. Here are my models. (Note I've removed some fields for simplicity's ...
0
votes
1answer
38 views

Are ModelForms in django used only for POSTing?

ModelForms are a nice way to prevent repeating the definitions of models one creates. What I would like to do is take advantage of that feature and use it for more than just processing POST requests. ...
0
votes
1answer
32 views

How to checked permissions in edit user form?

I have form (thanks Alasdair): class PermissionsModelMultipleChoiceField(forms.ModelChoiceField): def label_from_instance(self, obj): return "%s" % obj.name class ...
0
votes
1answer
22 views

How to change labels for permissions?

I have form: class NewUserForm(forms.ModelForm): first_name = forms.CharField(label=u'First name', required=True) last_name = forms.CharField(label=u'Last name', required=True) ...
1
vote
3answers
40 views

django:ValueError need more than 1 value to unpack

I'm using ajax and django for dynamically populate a combo box. ajax component works really fine and it parse the data to the view but int the view, when i'm using the spiting function it gives me a ...
0
votes
2answers
22 views

Django 1.5: UserCreationForm & Custom Auth Model

I'm using Django 1.5 & Python 3.2.3. I've got a custom Auth setup, which uses an email address instead of a username. There's no username defined in the model at all. That works fine. Yet, when I ...
0
votes
0answers
28 views

Integer validator not throwing the error message

forms.py def clean(self): cleaned_data = self.cleaned_data if 'phone_daytime' in cleaned_data: validate_integer(cleaned_data['phone_daytime']) raise ...
1
vote
1answer
23 views

Dynamic choice fields in Django

Referencing the Django docs on this, I have set up the following: Category_Choices = ( ('Food', ( ('burger', 'hamburger'), ('pizza', 'pizza'), ), ('Drink', ( ...
0
votes
3answers
41 views

integer validation in django not working

forms.py class UserCreateProfileForm(forms.ModelForm): fields = ['phone_daytime', 'phone_mobile'] def clean(self): cd=self.cleaned_data ...
0
votes
1answer
36 views

Changing queryset of a ModelChoiceField on Django

I am trying to display a dropdownlist showing only some objects in a queryset, but either I am getting an error, or I am displaying none, or I am displaying all. models.py class Book(models.Model): ...
0
votes
1answer
19 views

Django replace ModelForm instance dynamically OR don't save Form data [image]

data entry people keep adding and duplicating models because they can't easily search for an existing item inline so I added fields to the Brand ModelForm to allow autosuggesting a Brand model. The ...
0
votes
1answer
25 views

BoundField' object is not iterable - Django

forms.py Date_Format = ( ('0', ' dd / mm / yyyy'), ('1', 'mm / dd / yyyy'), ) Time_Format = ( ('0', ' 12 hour AM / PM '), ('1', ' 24 hour '), ) class ...
2
votes
2answers
26 views

How to render the radio buttons without ul in django

forms.py Date_Format = ( ('0', ' dd / mm / yyyy'), ('1', 'mm / dd / yyyy'), ) Time_Format = ( ('0', ' 12 hour AM / PM '), ('1', ' 24 hour '), ) class ...
-1
votes
2answers
28 views

Phone_info matching query does not exist

views.py def add_phone(request): user=request.user try: phone = Phone_info.objects.get(user=user.id) except Phone_info.DoesNotExist: phone = None phoneForm = ...
0
votes
0answers
20 views

Django - with complex forms, is it better to manage them with jQuery?

I have built a fairly hefty web application with Django. The web app is form heavy -- there are forms all over the place. Most of the forms are very basic, but some forms are more complex. My ...
0
votes
1answer
23 views

Django multi-form save

I already tried nearly everything I could find regarding this, but I am pretty sure I am just one small suggestion away from solving my issue. I am trying to save to forms that I generated using the ...
0
votes
0answers
17 views

Django BigIntegerField remove MeioMask format before clean

I have a BigIntegerField into a Django model to save budgets of projects, in the front-end I'm using jQuery MeioMask plugin to set a mask to this input to force user to enter only numbers and feedback ...
0
votes
1answer
23 views

How to parse the values in excel file and store it in database using django

1.I am working in a project,were i am storing student name and phone number in a spreadsheet(.xls). 2.I am using django framework,in my app which have a button namely import from spreadsheet.So if i ...
0
votes
1answer
21 views

django formset causing ValidationError

I am having trouble with using django formset. Making a POST request is causing ValidationErrors with the form. I looked at the other posts on SO and but none of the answers worked for me. Any ideas ? ...
0
votes
1answer
11 views

Loading all Options alongside Picked in MultpleChoiceField

I have this form getting dynamic chosen values for the MultpleChoicesField (not ModelForm), like this: 25 class SelectedVisitorsForm(forms.Form): 26 27 visitors = ...
0
votes
1answer
17 views

Import xls file and store thedata into database in Django

views.py def contact_list(request): importform = ImportExcelForm() if request.method == 'POST': importform = ImportExcelForm(request.POST, request.FILES) if ...
4
votes
2answers
53 views

Django form with ManyToMany field with 500,000 objects times out

Lets say for example I have a Model called "Client" and a model called "PhoneNumbers" class PhoneNumbers(models.Model): number = forms.IntegerField() class Client(models.Model): number = ...
0
votes
1answer
45 views

__init__() got an unexpected keyword argument 'attrs'

forms.py class ImportExcelForm(Form): file = forms.FileField(attrs={'class':'rounded_list',}) I am trying to add css class to my filefield in forms.I am getting this error "__init__() got an ...
0
votes
1answer
23 views

Multiple forms on one page - one not working: Django

I am trying to have two forms on a (paginated) page. They display just fine if I hit "save" on relevance_form, I can see this change in the admin. For event_form, however, nothing happens and after ...
0
votes
0answers
17 views

ModelForm: upload file in chunks in custom path

I have the following situation: models.py class ShapeFile(models.Model): name = models.SlugField() file = models.FileField(upload_to=get_upload_path) def get_upload_path(instance, ...
0
votes
1answer
21 views

Custom JS for RadioSelect inlines in Django admin

Here is working example on adding custom JS code (any HTML indeed) to each one of inlines: http://djangosnippets.org/snippets/1261/ But I cannot reproduce it for RadioSelect type fields in admin. ...
0
votes
0answers
27 views

Django formset if TOTAL_FORMS has different number than actual number of forms

When dealing with dynamic formset, there are times when TOTAL_FORMS is greater than the actual number of forms. Also, this input TOTAL_FORMS can be modified easily by a user. So for example, my input ...
0
votes
2answers
37 views

Render form errors with the label rather than field name

I would like to list all form errors together using {{ form.errors }} in the template. This produces a list of form fields and nested lists of the errors for each field. However, the literal name of ...
0
votes
1answer
17 views

Caught VariableDoesNotExist while rendering: Failed lookup for key [time_filter] in u'[{},

views.py def when(request): user = request.user report = Report.objects.get(user=request.user) reportform = ReportForm(instance=report) settings = ...
0
votes
0answers
24 views

Django file or URL field

I want to do something very simple but searches on SO or Google are not throwing up anything relevant. I have a FileField defined that current uses Django Storages backend for S3. That all works fine ...
0
votes
2answers
41 views

Passing variable to a form for display in django

views.py def when(request): user = request.user report = Report.objects.get(user=request.user) reportform = ReportForm(instance=report) settings = ...
0
votes
1answer
23 views

Django 1.5 ModelForm like admin in view with images and foreign key

I have the following models: class Quiver(models.Model): user = models.ForeignKey(settings.AUTH_USER_MODEL) is_default = models.BooleanField(default=False) type = ...
0
votes
0answers
20 views

I/O operation on closed file using Django forms

I have a Django form that asks for the filename of a CSV file for import. In the form that asks for the filename, I have a custom clean() method that reads the in-memory-file and validate the contents ...
0
votes
1answer
43 views

show the selected date and time format from settings

models.py class Settings(models.Model): date_format = models.CharField('Date format', max_length=100) time_format = models.CharField('Time format', max_length=100) views.py for saving the ...
2
votes
1answer
32 views

Confirm action with password in Django 1.5

How can I create a "confirm with password" form in Django 1.5? I am going to make a function to disable the user account, but the account shouldn't be disabled if the user can't provide the correct ...

1 2 3 4 5 73