0
votes
0answers
57 views
Django: validationerror problem when multiple modelforms are pointing to one model
I have a set of forms (lets say formA,formB,formC) on a page that collects data and exposes different fields depending on which form is used. These forms have different underlying …
0
votes
1answer
34 views
How do you make a Django Form for a model and all of its children following a particular foreign key?
For example, lets say you want to create a ModelForm for Supervisor that also allows you to create or update 3 or more Underlings in the same form.
from django.db import models
cl …
0
votes
2answers
41 views
File does not upload from web form in Django
Howdy - I've written a very simple app to accept job applications including a resume upload.
Running the bundled server for development locally, I can successfully upload files vi …
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 …
0
votes
1answer
38 views
How to create Django FormWizard for one Model?
I have Django Model with many fields which user must fill. If I'll create one ModelForm for this Model it will be big enough for one form. I want to split it using FormWizard. I th …
1
vote
1answer
56 views
Django ModelForm: accessing a field’s value in the view template
Q: Is it possible to pull out the value for one of my ModelForm's fields while in the template? If so, how?
Background:
I have a search form that I'm using to allow users to filte …
1
vote
2answers
81 views
What is wrong with my django’s model field ?
I am trying to do a PhoneField that convert the value as a standardized value.
In this case, I want to use this clean method.
def clean(self):
phone = self.cleaned_data.get(' …
1
vote
1answer
59 views
How to check if a FileField has been modified in the Admin of Django ?
Hello,
I am trying to do a model with a file that shouldn't be modified. But the comment of the file can be.
Here is what I did, but we cannot modify the comment.
How can I test …
0
votes
2answers
72 views
Django Admin: Getting request in ModelForm’s constructor
The below code removes certain values from a drop down menu.
It works fine but I want to remove the value if the user lacks certain permissions.
How can I access request.user in t …
0
votes
1answer
59 views
How to validate/clean() a unique=True field without using a ModelForm?
In a custom Form, how does one validate a Model's field's uniqueness (i.e., has unique=True set)?
I know that django's ModelForm automatically performs a validate_unique() functio …
0
votes
1answer
34 views
how to define a widget in a model attribute
Simply, I write:
# forms.py
class NoteForm(ModelForm):
def __init__(self, *args, **kwargs):
super(NoteForm, self).__init__(*args, **kwargs)
#add attributes to html-field- …
2
votes
1answer
102 views
Django ModelForm Validate custom Autocomplete for M2M, instead of ugly Multi-Select
Given the following models (cut down for understanding):
class Venue(models.Model):
name = models.CharField(unique=True)
class Band(models.Model):
name = models.CharFiel …
0
votes
1answer
310 views
django model/modelForm - How to get dynamic choices in choiceField?
hi
i'm experimenting with django and the builtin admin interface.
I basically want to have a field that is a drop down in the admin UI. The drop down choices should be all the di …
0
votes
2answers
154 views
django auto slug in model forms like prepopulated-fields in django admin.
is there a way to get the same results of using pre-populated fields in django's admin site for slug fields in a standard modelform
1
vote
2answers
219 views
Changing data in a django modelform
I get data in from POST and validate it via this standard snippet:
entry_formset = EntryFormSet(request.POST, request.FILES, prefix='entries')
if entry_formset.is_valid():
... …
