Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
79 views

Override save on Django InlineModelAdmin

That question might look similar to this one, but its not... I have a model structure like : class Customer(models.Model): .... class CustomerCompany(models.Model): customer = ...
1
vote
1answer
45 views

How to display a value where there is no none in Django admin?

Is there an djangtastic way to display a default value in admin when there isn't a value? Like 'n/a', but not to save that to the database? When I set all the fields in the model below to readonly in ...
1
vote
2answers
44 views

Django - Include a media into a specific admin page

If I have this kind of modelAdmin: admin.py #... class ScribPartAdmin(admin.ModelAdmin): class Media: css = { 'all': ('css/mymarkup.css',) } admin.site.register(ScribPart, ...
1
vote
0answers
428 views

Django Admin: Inlines for a Generic Foreign Key with a variable model

This is a fairly complex query that I'm going to do my best to simplify; apologies if I do an insufficient job of it. I'd be happy to elaborate if I'm not being terribly clear. I'd like to be able to ...
0
votes
2answers
22 views

Swap the field type/widget rendered in AdminPage depending on the permissions

Like in the title I want to swap the field that is rendered on to the form. For example I have the following model: models.py class Project(models.Model): name = models.TextField(max_length=200) ...
0
votes
0answers
30 views

ModelAdmin - Many-to-many inlines

Okay, so I have a model that looks like this: class OpHour( models.Model ): days_of_the_week =((0,"Sunday"), (1,"Monday"), (2,"Tuesday"), ...
0
votes
1answer
150 views

TypeError while rendering: 'long' object is not iterable

I have a few models with some ForeignKey relationship. Through forms.py I added a ModelMultipleChoiceField widget class VariableFieldForm(ModelForm): custom_field = ...
0
votes
1answer
79 views

Django - ModelAdmin media definition

I'm trying to include some CSS and JS files into the change form of an object like specified in the doc. Here are me files: admin.py #... class ScribPartAdmin(admin.ModelAdmin): class Media: ...
0
votes
0answers
132 views

Django admin with ajax update of change list

I'm trying to add 'onblur' event to text fields in change list view of AdminModel that will send ajax request to update field in database. I know I can do this by writing ajax functions but it puts ...