Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
443 views

Django Model Field Default Based Off Another Field in Same Model

I have a model that I would like to contain a subjects name and their initials. (The data is somewhat anonymized and tracked by initials.) Right now, I wrote class Subject(models.Model): ...
4
votes
4answers
4k views

Django MultiWidget Phone Number Field

I want to create a field for phone number input that has 2 text fields (size 3, 3, and 4 respectively) with the common "(" ")" "-" delimiters. Below is my code for the field and the widget, I'm ...
3
votes
1answer
140 views

Django StdImage won't work when using a proxy model

In Django i have a model that represents an image with a description that has Foreign Key to another model, this model uses an StdImageField to save the image and auto create a thumbnail. This model ...
3
votes
3answers
264 views

Django Custom Field: Only run to_python() on values from DB?

How can I ensure that my custom field's *to_python()* method is only called when the data in the field has been loaded from the DB? I'm trying to use a Custom Field to handle the Base64 ...
3
votes
2answers
197 views

How to change multiple select field to multiple input fields for a many-to-many case?

When I display the ToolBoxEditForm it uses a multiple select field. But what I want is a form that lets the user edit each tool he has in the toolbox as a text field. I cant figure out how to do this ...
3
votes
2answers
1k views

django - dynamic form fieldsets

A form will be spitting out an unknown number of questions to be answered. each question contains a prompt, a value field, and a unit field. The form is built at runtime in the formclass's init ...
3
votes
2answers
1k views

Django Piston: How can I exclude nested fields from handler results? Is it even possible?

Before the question, the background: I am putting the finishing touches on an API I have written for a Django app utilizing django-piston. The API is able to search by request or IP address which are ...
2
votes
1answer
91 views

Django: Force a field to be unique for all model objects with the same foreign key

Suppose I have the following Models defined in django (not tested): class CarMaker(models.Model): name = models.CharField("Name of car maker", max_length=40) class ...
2
votes
1answer
121 views

In django, how can I retrieve a value from db into a custom field template?

I am using a custom class on my model to provide image uploading, through an app called django-filebrowser. # myapp/models.py class Book(models.Model): name = models.CharField(max_length=30) ...
2
votes
1answer
464 views

How do I properly format a StringIO object(python and django) to be inserted into an database?

I have a requeriment to store images in the database using django, and for that I created a custom field : from django.db import models class BlobField(models.Field): __metaclass__ = ...
2
votes
3answers
252 views

Django automatically compress Model Field on save() and decompress when field is accessed

Given a Django model likeso: from django.db import models class MyModel(models.Model): textfield = models.TextField() How can one automatically compress textfield (e.g. with zlib) on save() ...
2
votes
2answers
532 views

Django: Would models.Field.validate() for all validation save a lot of code writing?

Am I thinking about this all wrong, or am I missing something really obvious? Python's style guide say's less code is better (and I don't think that's subjective... It's a fact), so consider this. ...
2
votes
2answers
3k views

Django MultiValueField - How to pass choices to ChoiceField?

I have a multivaluefield with a charfield and choicefield. I need to pass choices to the choicefield constructor, however when I try to pass it into my custom multivaluefield I get an error __init__() ...
2
votes
1answer
829 views

How to markup form fields with <div class='field_type'> in Django

I wasn't able to find a way to identify the type of a field in a django template. My solution was to create a simple filter to access the field and widget class names. I've included the code below ...
2
votes
2answers
525 views

How to add a Manager from Field

What i want to do is when some model use my field, it will automaticaly add custom manager to that model. As far as i know, contibute_to_class provide such functionality class ...
1
vote
2answers
32 views

Django - Model with preset field (custom field)

I have a field that I usualy set as rate = models.DecimalField( max_digits=2, decimal_places=1, choices=MY_CHOICES, ) Is there a way I could define it like rate = mymodels.MyRateField() ?
1
vote
3answers
126 views

django smart decimal field

I am creating an app that basically stores shoe sizes, along with other information. I have been using the Django Decimal field to store the sizes, however the decimal field stores sizes like 10 as ...
1
vote
0answers
193 views

Django-Nonrel ManyToOne model creation on the fly

I have 3 models: Company, Project and Contact with the respective relationships: Company-Project (M2M) Project-Contact (M2M) Company-Contact (OneToMany) I have this big form in which people use ...
1
vote
1answer
306 views

Django - reverse lookups with ManyToManyField

I'm trying to follow the code from the django docs: class Person(models.Model): name = models.CharField(max_length=128) def __unicode__(self): return self.name class ...
1
vote
2answers
487 views

Django - filter ManyToManyField?

I'm not sure the best way to describe what it is that I'm trying to do so forgive my title. I have two models, User and Group. Group contains field, members, which is a ManyToManyField referring to ...
1
vote
2answers
349 views

Django - enforcing ManyToManyField unique items

I'm trying to do something simple like this: members = models.ManyToManyField(User,blank=True,null=True,unique=True) but unique isn't allowed. When looking at the table created, it makes foreign ...
1
vote
1answer
735 views

How do I programmatically set a django choice field?

I have a model with a choice field, and I want to set it during the saving of a form in django. I want the users choices to generate additional model updates - and one model I want to update has a ...
1
vote
0answers
134 views

How to update choices without a server restart in a custom FilePathField with Django?

I have sub-classed a models.Field for an enhanced FilePathField. Through the get_choices() method the choices update properly if files has been changed - no server restart is needed for that. But in ...
1
vote
1answer
142 views

Django: searching on an EncryptedCharField (django-extensions), is this possible?

is this possible? For a model with EncryptedCharField named "first_name" i notice that the field does not decrypt when I search on it. In all other uses it is fine. This does not work: if ...
1
vote
2answers
186 views

how to customize sorting order in django ForeignKey field

class Article(models.Model): # usefull staff category = models.ForeignKey("Category") class Category(models.Model): parent = models.ForegnKey('self') I want to display categories ...
1
vote
1answer
245 views

Can i get models field type from a model queryset in Django?

Can i get model field type from a model queryset in Django? For example: a is b model's queryset and the b model has following fields: f:charfield g:foreignkey h:manytomany Is there any way to ...
1
vote
1answer
135 views

How to display many-to-many field as a list of text input fields?

When I display the ToolBoxEditForm it uses a multiple select field. But what I want is a form that lets the user edit each tool he has in the toolbox as a text field. I cant figure out how to do this ...
1
vote
2answers
242 views

Django1.1 model field value preprocessing before returning

I have a model class like this: class Note(models.Model): author = models.ForeignKey(User, related_name='notes') content = NoteContentField(max_length=256) NoteContentField is a custom ...
1
vote
1answer
106 views

Django: setting required=True on formfield when running clean() .. actually just before

I'm trying to force a form field to be required based on a choice widget during validation. def clean(self): cleaned_data = self.cleaned_data if cleaned_data.get('periodical') == True: ...
1
vote
3answers
2k views

How dynamic add custom field to model

How add custom field dynamicly? I'm trying that, but the field won't insert into database when I sync db: #It use as register(MyModel) def register(model, attr="my_attr"): if model in registry: ...
0
votes
2answers
33 views

Raising ValidationError in a custom field's to_python() method breaks admin forms

I have a custom field called CustomField to wrap a class called Example like so: from django import forms from django.db import models from . import Example class CustomField(models.CharField): ...
0
votes
1answer
32 views

Django/Python update field values (during model save)

I am trying to capitalize a number of fields in my django models, when they are saved. Looking at this question, which had this answer: class Blog(models.Model): name = ...
0
votes
1answer
66 views

Why does Django _meta store fields and many_to_many fields separately?

I am a beginner in django/python.I am using _meta to access the fields of a django model. I use _meta.fields to access the fields and _meta.many_to_many to access the many_to_many fields. What are the ...
0
votes
2answers
133 views

django custom field and widget

Im writing a custom field/widget to display multiple input fields for related data, for example my product has 4 search fields, search1, search2, search3, etc.. , instead of having to define each ...
0
votes
2answers
27 views

Copying over the fields from a ModelForm into a Form

I have a dummy Form that looks like: class MyForm(forms.Form): class __init__(self, *args, **kwargs): pass Here's are the ModelForms and their respective Models: class ...
0
votes
1answer
62 views

How assigned TypedChoiceField as form class to model Field with choices?

I had CharField with choices in the model, but I need for this field render as CheckboxSelectMultiple, which returns list to a form class. With TypedChoiceField form class, which automatic assigned to ...
0
votes
2answers
62 views

dependent fields in django admin

I want to add, some fields depending on others. I have city and country model. I can include country as foreign key in city model. And then if I will add both city and country in another model ( say ...
0
votes
0answers
116 views

Empty label in TypedChoiceField

I have modelform which use the model with CharField with specified choices attribute. I need to render this field like CheckboxSelectMultiple. model: class Language(models.Model): cv = ...
0
votes
1answer
170 views

Django custom form field initial data

I am having trouble understanding how to initialize a custom form field in a django view. For example: http://djangosnippets.org/snippets/907/ from datetime import date, datetime from calendar ...
0
votes
1answer
61 views

Django - array of checkboxes

I would like to out a number of checkboxes in one of my templates and I can't get it to work. I'm trying to pass an array containing forms.BooleanField() in my form like : class ...
0
votes
2answers
100 views

django conditional url verify_exists

I have 3 url fields defined in my model as follows: image_1 = models.URLField(max_length=100, verify_exists=True, blank=True) image_2 = models.URLField(max_length=100, verify_exists=True, blank=True) ...
0
votes
2answers
103 views

Django modelform remove “required” attribute based on other field choice

I have ModelForm with several fields. Some of fields are required, some not. Also I have Select field with different choices, and I want to make some of fields "required" or not based on this Select ...
0
votes
3answers
152 views

How to create a Django form with a RadioSelect field, and some buttons disabled?

I'm creating a Django form with a set of Radio buttons (as a single RadioSelect field), and I'd like to have some of the buttons grayed out. However, given that the RadioSelect field is a single field ...
0
votes
3answers
37 views

Is there a way to act on objects before they're saved or updated in Django?

As per this recent question, I'll be needing to store all datetime objects in UTC, so I'll need to use a custom library to translate them properly before they're stored. Is there a way I can act on ...
0
votes
1answer
73 views

ModelForm with a reverse ManytoMany field

I'm having trouble getting ModelMultipleChoiceField to display the initial values of a model instance. I haven't been able to find any documentation about the field, and the examples I've been ...
0
votes
1answer
99 views

Setting default value for integer field in django models

I'm trying to set a default value for the integer field in Django model using models.PositiveSmallIntegerField(default='0') Why isn't it working?
0
votes
1answer
36 views

Django analog to Python's mutable set

I've searched through the Django tutorial but I wasn't able to find information on what was Django's analog to Python's mutable set. My friend said it might have to do with the ManyToManyField but ...
0
votes
2answers
153 views

A custom field inheriting from ForeignKey throws an exception on save

I have written the following custom field: from django.core.urlresolvers import reverse from django.db import models from django.db.models import signals from sitetree.models import Tree, TreeItem ...
0
votes
1answer
55 views

Avoiding IntegrityError in custon Django field

Assume a django model with two fields: - created - modified Each field are integers, unique and ever-increasing in value. An object should have the same value for created and modified when saved ...
0
votes
2answers
747 views

Python - Django - Form choicefield and cleaned_data

I'm having an issue with how cleaned_data seems to work. I want to store the cleaned_data in a session so I can repopulate the form object later. The problem is my choice fields seems to store the ...

1 2