Specific questions related to forms with the django web framework
0
votes
0answers
5 views
Both login and signup in same view in Django 1.5
I want my login and sign up views in same template. Just like this template:
<h1>Login</h1>
<form method="post" action="">
{{ form.as_p }}
<input type="submit" />
...
0
votes
0answers
12 views
Django Passing Value to extended widget
I am trying to replace admin file input with a widget that can show pictures:
I have extended the widget from the forms.ClearableFileInput class but now i need a way to pass an extra argument sizes to ...
0
votes
2answers
13 views
Django forms custom validation on two fields one or the other
I'm struggling with the following and need some guidance, below you will see my form.py. I have two fields called group and single. I need to apply the following rules/validation to them...
A user ...
0
votes
1answer
19 views
validate display none in django
template is
<button type="submit" id="add" class="button_style" onclick="addreporter();" value="Add New Authorised Reporter">Add New Authorised Reporter</button>
<div ...
0
votes
1answer
25 views
Overriding max_value in django form
I use a ModelForm and I want to set a max_value for an IntegerField without losing the other attributes which where created from the model (verbose_name, etc.).
This is my ModelForm:
class ...
0
votes
2answers
26 views
validating white space,empty space and integer
How to validate white space,empty space and integer in a single method.Consider my forms.py
class UserprofileForm(forms.ModelForm):
class Meta:
model = Userprofile
...
0
votes
1answer
26 views
Check existing password and reset password
views.py to save the password:
elif 'reset_password' in request.POST:
if request.POST['reset_password'].strip():
saveuser = User.objects.get(id=user.id)
...
0
votes
0answers
14 views
Custom widget (ajax) integrated with crispy-forms
We are migrating are forms to django crispy-forms and I can't figure out how to integrate a custom field / widget into it. Specifically we are using django-selects2 for our ajax selects. Here is our ...
0
votes
1answer
27 views
How I validate my Django Form with a File Upload
I want to validate my form but it uploads everytime the whole file before I get the feedback from Django which field is correct or incorrect.
Can I prevent the upload or validate it one some other ...
0
votes
1answer
17 views
django form errors. get the error without any html tags
I would like to get on my template the errors of the form in non-html version.
by default the error is wrap up by <ul class="errorlist"> which I want to avoid.
Anyway to do it without a ...
0
votes
1answer
21 views
white space validation not working
forms.py
I want to validate white space for following fields name1,name2 and name3.I tried the same in clean(),where i did other validation.Only white space validation is not accepting.
Thanks
0
votes
1answer
23 views
How to validate white space in django ModelForm
forms.py
class PhoneForm(forms.ModelForm):
class Meta:
model = Phone_info
fields = ['name1','number1','name2','number2','name3','number3','emergency','emergency_number']
I need ...
0
votes
1answer
30 views
password field data gets clear after submitting
I am uisng Django's auth_user table for username and password.To change the password field i did the below in forms.py
class UserRegisterForm(forms.ModelForm):
password = ...
0
votes
1answer
27 views
how I can load a model to multipleChoiceField
please y have been trying to show the table in the form, but I have not been able to do.
please clone and create database and run the project on github.
is too much code to paste here.
github: ...
1
vote
2answers
26 views
Mapping a different field OneToOneField in a ModelForm
I have two django models related with a OneToOneField. I'll show the relevant fields:
class User(AbstractBaseUser, PermissionsMixin):
email = models.EmailField(unique=True, db_index=True)
And
...
1
vote
0answers
23 views
Django file upload failure
I'm quiet new to django.I have met a problem when I tryied to write a page handling the uploading files.Here are the codes:
models.py:
class HomeworkContent(models.Model):
homework = ...
0
votes
2answers
18 views
Django fail to raise an error when a minimum length password is required
I have an form that allows a user to create a user account. I also enforce a minimum password length of 8 and when that is breached , An error would be raise . The problem is , it doesn't raise an ...
0
votes
1answer
18 views
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
29 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
28 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
29 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
43 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
25 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
29 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
25 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
23 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
17 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
17 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
47 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
23 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
15 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
39 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
46 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 ...
1
vote
2answers
29 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
31 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
45 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
40 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
27 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
26 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
29 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
32 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
23 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
27 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
20 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
27 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 ...

