Tagged Questions
-1
votes
2answers
22 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
22 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
1answer
21 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
24 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
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
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
2answers
27 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 ...
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', (
...
-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
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 ...
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
25 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 ...
0
votes
0answers
19 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
2answers
42 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
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 ...
0
votes
1answer
14 views
check box always in unchecked mode after page reload
forms.py
Date_Format = (
('0', ' dd / mm / yyyy'),
('1', 'mm / dd / yyyy'),
)
Time_Format = (
('0', ' 12 hour AM / PM '),
('1', ' 24 hour '),
)
class SettingsForm(forms.ModelForm):
...
1
vote
1answer
27 views
how to save radio buttons values in db 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 DateFormatForm(Form):
...
0
votes
2answers
32 views
numeric validation in form in django
forms.py
class PhoneForm(forms.ModelForm):
fields = ['user','name1','number1','name2','number2','name3','number3','emergency','emergency_number']
def clean(self):
cd=self.cleaned_data
...
0
votes
1answer
36 views
Django edit and update data with MySql
In my website, each user has their own login id and password, so if a user is logged in, he can add, edit and update his record only.
models.py is
class Report(models.Model):
user = ...
0
votes
1answer
26 views
Report matching query does not exist-djnago
views.py
def when(request,pk=id):
if request.method == 'POST':
reportform = ReportForm(data=request.POST)
if reportform.is_valid():
log.debug("test:%s",reportform)
...
0
votes
1answer
25 views
ModelForm Validation
Django says "Note that if the form hasn’t been validated, calling save() will do so by checking form.errors. A ValueError will be raised if the data in the form doesn’t validate – i.e., if form.errors ...
1
vote
1answer
32 views
Django ModelMultipleChoiceField for another model's many-to-many
I'm working on a DIY application (Django 1.5) and I've reached a roadblock. The main models involved are Guide, Tool, Item, Step. A Guide can have many Tools and Items, and a Tool or Item can belong ...
0
votes
1answer
25 views
Displaying FK's in Django forms as a select field properly
I have two Django models:
from django.db import models
class Show(models.Model):
show_title = models.CharField(max_length=250)
def __unicode__(self):
return self.show_title
class ...
0
votes
0answers
16 views
AttributeError: 'AlumniResponseFormFormSet' object has no attribute 'new_objects'
I'm using the Django admin and trying to make some changes to a related object that is mapped as an InlineModelAdmin object. I'm trying to do this using the save_related(self, request, form, ...
0
votes
0answers
30 views
Use formset instead of ModelChoiceField in Django 1.5
Right now I have a model
class Model1(models.Model):
foreign_key1 = models.ForeignKey(Model2)
foreign_key2 = models.ForeignKey(Model2)
Can I, instead of the ModelChoiceField, create a form ...
0
votes
0answers
15 views
Formsets in Django 1.5
I've been looking at formsets in Django 1.5. I've used inlineformset_factory to create an object in Model 1 and some objects in Model 2 which are associated with Model 1.
What if I need to create an ...
-3
votes
1answer
36 views
Instant search in django application
I am using django in windows
I am giving a text field to search by name of category, Text box should give me name result like Google instant
By selecting name, it should give me the details of ...
0
votes
1answer
56 views
FIle upload with chunks: avoid saving it twice
I use a custom function to upload a file splitting it in chunks, as documented here.
My problem is that calling save() after handle_uploaded_file() uploads my file twice, one into "MEDIA_URL/my_path" ...
0
votes
2answers
23 views
Django : How to retrieve an extra-field defined in admin for a model in a pre_save signal?
I've overloaded admin form for a model by adding an extra-field
class MyModelAdminForm(forms.ModelForm):
password = forms.CharField(widget=forms.PasswordInput(), required=False)
class Meta:
...
0
votes
1answer
25 views
django manytoone other side
I have a django webapp. I have something like this set up:
class Doc(models.Model)
invoice = models.ForeignKey(Invoice, null=True, on_delete=models.SET_NULL, blank=True)
class ...
0
votes
2answers
72 views
Django: Access and Update fields of a Form Class inside __init__ or save functions
I have a MyModelForm form class for MyModel model class, and I want to generate a random value for a certain field.
The way I see it is either inside init or save functions, I tried using ...
2
votes
1answer
68 views
Django: Risks in handling data directly from request.POST[“item”]
Sometimes I have a form that is a bit complicated in logic, and needs validation beyond just type checking or regex, so I end up handling data directly from request.POST['item'], like:
...
0
votes
1answer
23 views
Syndication feeds using Django
How to import details from other websites using Syndication Feeds using Django. Am new to Django python. In my blog i need to use feeds concept. Please give some examples for that.
0
votes
1answer
15 views
Django forms extending from model doesn't work
I want to create a form that inherits from my model but it doen't work and I can't find out why.
It doesn't throw any exception but simply doesn't shows the specified fields.
models.py
class ...
0
votes
2answers
40 views
Completely stripping certain HTML Tags in Django forms
I have a ModelForm that posts news items to a database, and it uses a javascript textarea to allow the authorized poster to insert certain pieces of HTML to style text, like bold and italics. However, ...
0
votes
0answers
25 views
Django select widget not from __str__
How could I somehow override or add more to the labels in django select widget on foreign key field? I need to add some additional info which will not be in this foreign model str function.
For ...
0
votes
1answer
45 views
create model from form in django
Is there a way to create a model from a form in django(1.5) ?
Like when creating forms from models.
My form is
class QuoteForm(forms.Form):
country = forms.ChoiceField(choices=COUNTRIES, ...
0
votes
1answer
70 views
Login on every page with inclusion tags: example and doubts
I need a Login form on every page of my project and I'm implementing it with inclusion tags. With django documentation and some examples like this one, I've written the following code so far:
...
0
votes
2answers
34 views
How to create check box in django
I am developing a site in django.I have to display a check box in templates.
I am using model form,
class ReportPersonForm(forms.ModelForm):
class Meta:
model = ReportPerson
...
0
votes
1answer
25 views
How to show ForeignKey fields in Model Form
# models.py
class modelA(models.Model):
a = models.CharField()
b = models.CharField()
class ModelB(models.Model):
c = models.CharField()
d = models.ForeignKey(modelA)
# forms.py
...
0
votes
2answers
50 views
In Django, how to implement a form to assign multiple users to an item?
I have two models that I need to create a form for.
def Item(models.Model):
title = models.CharField()
description = models.TextField()
def ItemUser(models.Model):
item = ...
0
votes
1answer
35 views
Django Queryset in forms
How can i make a queryset in this modelform. This is my code.
Class Sample(forms.ModelForm):
class Meta:
model = Customer
fields = ('name','address',)
widgets = ...
0
votes
2answers
29 views
Unique in ModelForm, how to get back to the form with error message?
I have found some posts about more or less the same situation like this one or this other one, but I was not able to adapt any of these to my situation.
What I would like is to return to my form with ...
2
votes
1answer
89 views
Django: TypeError: 'username' is an invalid keyword argument for this function
I have a model called Employee for the registration. When I run the code I go the
username' is an invalid keyword argument for this function
error.
employee=Employee(user=user, username= ...
1
vote
2answers
52 views
Customize the django form widgets
forms.py
INCIDENT_LOCATIONS = (
('01. Classroom', '01. Classroom'),
('02. Corridor', '02. Corridor'),
('03. Stairs', '03. Stairs'),
('04. Playground', '04. Playground'),
('05. ...
0
votes
2answers
27 views
Get author(user) in Django
I'm trying to make a news posting app using ModelForms, and currently I'm trying to set it so that the form automatically gets the authenticated user so when said user posts the news item, their name ...


