Tagged Questions
0
votes
2answers
38 views
HTTP Response problems with Django form
at the moment, I try to make a search form for a small database.
This is a part of my models.py file:
from django.db import models
from django import forms
#...
class searchForm(forms.Form):
...
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 ...
1
vote
1answer
16 views
Cancel form file upload submission
I work on a file upload form with some additional data and want to have a cancel button.
My site is running on Django. I submit the form over the normal way with a submit button without Ajax but I ...
0
votes
1answer
24 views
Passing array values from a form: Why I get a 1 variable instead of array?
I try to pass the next form by clicking the 'submit' button (I checked the all 2 fields):
<form id='contact-form' name='contact-form' method='get' action='/3/'>
<input type='checkbox' ...
0
votes
2answers
33 views
Django forms can't find my template
I'm trying to make use of my first Django form, mostly following this example. Do I need to provide an explicit HTML form myself, or does Django's Form class does this for me? If so, how?
Here's my ...
0
votes
1answer
30 views
Django save model and its children with ModelForm
I have such models: Article, Link & ArticleLink. Article can have many links attached to it and I need to save them from one form.
I have created all the relations and a ModelForm for Article, ...
0
votes
1answer
47 views
How can i exclude few fields from validation in forms
I have 10 fields in a Django form like this
class SearchForm(forms.Form):
student_number = forms.CharField(required=False)
final_date = ...
0
votes
0answers
29 views
Django form that depends on Queryset
I have the following code:
class TagSelectionForm(forms.Form):
tag = forms.CharField(max_length=60)
def __init__(self, tagGroup, *args, **kwargs):
super(TagSelectionForm, ...
0
votes
1answer
30 views
django using specific instance for ModelForm object
For GET form_page.html,
my view has a specific my_id to instantiate a form.
(ie, when a user first sees this form_page, an instance is already created for him,
and he's actually modifying it for the ...
0
votes
1answer
37 views
Form cleaned_data and geting values
Hi i have problem becouse im using smart select ( 3 select fields )to filter my table.
But engine id is wrong and dont get corect query. I need to get no id from db but common names.
views.py
def ...
-1
votes
2answers
30 views
django form label in {% for %} statement
I want to wrap a in a label, but when the template was rendered, it didn't generate the right html, here is my code:
{% for item in studentinfo %}
<form action="" method="">
...
0
votes
2answers
23 views
how to customize the radio button in Django
forms.py
Date_Format = (
('0', ' dd / mm / yyyy'),
('1', 'mm / dd / yyyy'),
)
class SettingsForm(forms.ModelForm):
date_format = forms.ChoiceField(widget=forms.RadioSelect(), ...
0
votes
0answers
30 views
django-smart-select on django-cities
Is there a way to restrain fields selected by smart-select on a foreign model ?
I am trying to do a chained country => city list
#my code
class Chained_Location(models.Model):
chained_country ...
1
vote
1answer
31 views
Getting “This field is required” even though file is uploaded
I'm new at Django and trying a simple form. I have a model class "Profile" with a file field (schema_file) defined and also a ModelForm class for it. When I try to create a new profile in the browser ...
0
votes
1answer
28 views
trouble implementing django search bar site wide
I am very new to forms with django. I have this method in my views.py:
def search(request):
register.inclusion_tag('blog/search.html')(search)
template = loader.get_template('blog/search.html')
if ...
0
votes
1answer
20 views
django paginate the original search result
I'm using ListView to display the search result, and using forms to let user input search values, here is the problem: when I get some search results, say, 50 items, and I set the item_per_page 30, so ...
0
votes
1answer
47 views
Editing users in Django
I was trying to to edit a user using the form that i used to create the user,
I have no idea why i'm getting an error A user with that username already exists.
Here is my view:
def ...
0
votes
0answers
20 views
how to using form as the search field in django
I'm using ListView, I rewrite the get_queryset method to do the search, and I use form to let the user input values, here comes the problem: the user could input some forms and leave some forms empty, ...
1
vote
0answers
27 views
Django: Insert choice is neglected in form init
In my model, I have a CharField with a few choices:
SURFACE_CHOICES = (
('as', _('Asphalt')),
('co', _('Concrete')),
('ot', _('Other')), )
surface = ...
0
votes
0answers
42 views
Django: populate a choice field based on a value selected in a previous form field
I am wondering how to populate a choice field (contact and additional contacts) based on a value selected in a previous form field (company). For example my form:
class AddTicketForm(ModelForm):
...
-1
votes
1answer
27 views
models and forms in one class (Django)
I am new to Django and Python and wanted to ask you how I can get models and forms in one class. I want to use Radio Buttons, EmailField, DateTimeField so I need really both (models and forms) :
...
0
votes
2answers
39 views
Django render doesn`t give a view
I`ve got in urls.py redirecting to as_view() method of ClassView after pressing "Search" button
There is an if such as:
def as_view():
if request.method == 'POST':
//sth
elif ...
0
votes
2answers
38 views
django dynamic form ValueError
I want to get the select form which can display all the users who have the group name "sale".
My definition for my forms is like this:
class ArrangeUserForm(forms.Form):
def __init__(self, *args, ...
0
votes
0answers
38 views
jquery doesn't give selected option of a dropbox
I have a jquery js code in a template like that:
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("select").change(function(){
var str = ...
0
votes
1answer
37 views
Why is “blank” is missing in django.forms.CharField, but present in django.db.models.CharField?
Background
I have a model with two fields that are set the blank:
class News(models.Model): ...
1
vote
0answers
26 views
django dynamic data driven form fields [duplicate]
I'm trying to build a ticket system to cover multiple forms for multiple departments. Each ticket form has standard fields for title, date, description. The ticket may need additional fields depending ...
0
votes
1answer
33 views
Django Different form validation when adding and changing instance
My question is that can we perform different form validation on the same form based on different action, such as adding or changing.
Say I have a model which has a field named 'type'. And 'type' is ...
1
vote
1answer
102 views
ajax request triggered but success function won't start until I stop the page
The server I'm developing on is the Django 1.4 development server on Open-SUSE.
My Problem
My jquery ajax request is triggered, but the success function does not run until I stop the page with my ...
0
votes
1answer
41 views
Django smart/chained select manytomanyfield
here is the deal, this is my model:
class Health_plan(models.Model):
a = models.IntegerField ()
b = models.IntegerField ()
c = models.IntegerField ()
class Doctors_list(models.Model):
...
0
votes
1answer
17 views
Newbie Django filter uniques 2 many values
i am trying to filter the uniques from a list with this form:
class SpecForm(ModelForm):
a = Doctors_list.objects.values_list('specialty', flat=True)
unique = {z: i for i, z in a}
qs = ...
0
votes
2answers
24 views
newbie Django form not valid
i have this form.py:
class specForm(ModelForm):
a = Doctors_list.objects.values_list('specialty', flat=True)
specialty = forms.ModelChoiceField(queryset=a)
class Meta:
model = ...
0
votes
0answers
40 views
Prepopulate fields with currently logged in user data using Tastypie and AngularJS
Im using Tastypie and AngularJS with Django and I want to make client side page, where there would be prepopulated forms with currently logged in users username, email etc. So I thought one way could ...
-1
votes
0answers
40 views
Django forms, checkbox for related objects
I need to build a form for a model which has a many to many relation to another object.
I the form is bind to an already existing object, all the related objects will appears in the form of a ...
1
vote
1answer
34 views
[Django][Admin] change_form auto populated fields with javascript
I'm a little lost and don't know how to continue, after a lot of search I think that I'm not doing correctly it.
My problem is that I've got a offer class model like this one:
class ...
0
votes
3answers
62 views
newbie Django Choicefield/Charfield display on html page
I have been reading the django book and the django documentation, but still can figure it out.
i have this model.py:
from django.db import models
from django.forms import ModelForm
class ...
0
votes
1answer
26 views
Django form fails to display
I have a simple Django form being passed through a view to a template where it should display, but, for a reason that I -- after 5 hours -- have failed to deduce, it does not. Any and all ideas ...
0
votes
1answer
41 views
Django OneToOneField not selected
I'm developping in Django and I'm trying to do a form to edit some datas.
Here is my Model :
class Jewel(models.Model):
...
goldColor = models.ForeignKey(GoldColor, related_name='jewels')
...
0
votes
0answers
30 views
Django UrlConf NoReverseMatch
the following code returns a NoReverseMatch only on browse_years (the third urlconf). What am I missing? Thanks for your help!
url(r'^browse/things/(?P<thing>[\w-]+)/$', 'views.browse.things', ...
1
vote
2answers
77 views
Google Chrome Lags on Large Form Data Sumbissions
Summary:
I am attempting to pass base64 encoded image data via a form field input. My code works fine on all browsers I've tested it on, but there is severe amount of CPU lag, post submit, on Google ...
0
votes
1answer
38 views
Create new or select object in a ForeignKey in Django 1.5
I have two models, model A and model B.
In model B I have two ForeignKey fields which refers to the model A. It works, but it requires the model A to have records before I can choose values in model ...
0
votes
0answers
23 views
Uniting Django Form media
I have several Django templates, some with different forms. Some of the forms use custom widgets that need their own JS and CSS resources. These resources are properly specified in each form.media
...
0
votes
1answer
55 views
Django form “Enter a valid date.”
I'm having problem writing a simple form.
This is my model for that form.
class UserStock(models.Model):
amount = models.FloatField(default=0)
date = models.DateTimeField('buy date')
...
0
votes
1answer
36 views
How can I implement adding multiple objects with Django form?
How I can go about adding multiple objects from a single form with Django?
For example: if I have a sales form which stores sold products' register.
Imagine the form:
datetime: [_____________]
...
1
vote
1answer
56 views
(1406, “Data too long for column 'sr_number' at row 1”) After receiving a post in Django and saving to DB
Any help would be greatly appreciated, I'm fairly new to django and developing web apps in general, but up to this point i've been able to basically brute force everything or figure it out on my own; ...
0
votes
1answer
26 views
Django Form Saving, but NOT Redirecting
Basis: I am trying to display a forms information with a new unique url as well as view upon submission. The form is currently saving to the database, but not redirection to the new url or view. Below ...
0
votes
1answer
44 views
Nested Django Forms: 'ManagementForm data is missing or has been tampered with'
So i've looked around and it seems nobody has had the same problem that I am having to cause this seemingly common error. I am rendering some forms in my html as follows:
<form method="post" ...
0
votes
0answers
38 views
Python/Django SQLite3: save() not working with multiple forms simultaneously
Below is code I'm using as a response form to receive inputs from a webpage using Python/Django web framework and an sqlite3 database. The code successfully saves each input into the ReviewerResponse ...
0
votes
1answer
65 views
django form dropdown list of stored models
I am trying to create a form for a library where a user can perform 2 actions: add a new book or open the stored information of an existing one. Books have 2 fields (title and author).
Every time a ...
0
votes
1answer
38 views
Form's cleaned_data is empty but formset's cleaned_data isnt?
I am trying to use the String values from a CharField in each form of a formset, however for some reason the cleaned_data for each form always appeares empty while the formset's cleaned data is not. ...
1
vote
1answer
31 views
File Uploads in Django
I'm looking for a method to upload files from a web page built using Django, but without using django forms i.e. from django import forms.
Why? Simply because I can't get my head around why we need ...

