Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
3answers
7k views

Django admin - inline inlines (or, three model editing at once)

I've got a set of models that look like this: class Page(models.Model): title = models.CharField(max_length=255) class LinkSection(models.Model): page = models.ForeignKey(Page) title = ...
9
votes
1answer
514 views

Django Inlines user permissions + view only - permissions issues

I'm not sure if this is a bug or I'm just missing something (although I have already parsed the documentation about inlines), but: Let's say I have a model A. Model A is an inline of model B. User U ...
8
votes
4answers
3k views

Data binding the TextBlock.Inlines

My WPF App receives a stream of messages from a backend service that I need to display in the UI. These messages vary widely and I want to have different visual layout (string formats, colors, Fonts, ...
3
votes
2answers
1k views

Django admin different inlines for change and add view

I need separate views for add and change page. In add page I'd like to exclude some fields from inline formset. I've prepared two TabularInline classes, one of them contains property 'exclude'. I ...
3
votes
1answer
2k views

Add row to inlines dynamically in django admin

I have the following defined: class AnswerChoiceInline(admin.TabularInline): model = AnswerChoice # extra = 0 class QuestionAdmin(admin.ModelAdmin): inlines = [AnswerChoiceInline] ...
2
votes
1answer
90 views

django admin delete objects in inlines in save_model method

I have two related (via foreignkey relation) models and created admin model for parent with inlines. In several cases (edited in admin by boolean field), i need to delete all previous objects ...
1
vote
1answer
32 views

Style CheckBox text with inlines

I am trying to style text on a page that contains TextBlocks and TextBlocks as the content of CheckBoxes I want to do something like this (where textBlock is the TextBlock contained within the ...
1
vote
1answer
261 views

Making inlines conditional in the Django admin

I have a model that I want staff to be able to edit up to the date for the event. Like this: class ThingAdmin(admin.ModelAdmin): model = Thing if obj.date < today: #Something like that ...
1
vote
1answer
92 views

Is it possible to embed a StackedInline in another StackedInline with Django?

I think the title is self-explanatory. I this possible with the actual django version ? Thk in advance.
1
vote
2answers
227 views

Django ManyToMany Inlines Ordering in 1.2.x

I'm using Django 1.2's new ManyToMany admin.TabularInline to display related objects in the admin app, and it works great except I can't figure out what to set the "ordering" property to so it can ...
1
vote
1answer
325 views

Highlight Search TextBlock

My goal is to create a custom TextBlock control that has a new dependency property, SearchText. This property will contain a regular expression. All occurrences of this regular expression in the text ...
1
vote
1answer
212 views

Inlines in Django Admin

I have two models, Order and UserProfile. Each Order has a ForeignKey to UserProfile, to associate it with that user. On the django admin page for each Order, I'd like to display the UserProfile ...
1
vote
1answer
62 views

wpf: checking how many components are inside of a Span?

I have WPF Span that is used as a source to a TextBlock. I am doing some tests and it would be very helpful to know in code how many of which type of component is inside of the Span. For example, at ...
0
votes
1answer
19 views

How to edit inline objects with reverse generic relation in Admin Panel?

I would like to be able to add inline Image objects to Gallery in Admin (as I try it in admin.py below). Problem is that Image model doesn't have content_type field. It raises exception. I would like ...
0
votes
1answer
7 views

How to set for m2m-field different querysets for each inline object?

So I have a model that is shown in inline form. That model have ManyToManyField. Imagine that there are several inline-objects that are already created. The problem is how to show different ...
0
votes
1answer
77 views

Django admin - how to save inlines?

I need to override save method of inlines in admin. While saving photos, I need to add user id to DB column. I cant make it in model because there is no request data there. How can I do it in admin, ...
0
votes
1answer
67 views

Django inlines working on Dev server, yet not on Apache Test server?

I'm having an issue where the Inline Admin functionality is behaving differently in different environments. In Dev, when editing a technology I get a link at the bottom to add more Roll Modifiers as ...
0
votes
1answer
138 views

Missing inlines in Django Admin

See below for models.py/admin.py When I try to change or add a FashionMaleModel, the inlines don't appear, but they do in FashionFemaleModel. If I change the order in which the admin sites are ...
0
votes
1answer
131 views

How to deal with multiple sub-type of one super-type in Django admin

What would be the best solution for adding/editing multiple sub-types. E.g a super-type class Contact with sub-type class Client and sub-type class Supplier. The way shown here works, but when you ...
0
votes
1answer
862 views

UserProfile StackedInLine/TabularInLine redesigned

Hello everyone and thanks for reading. I have a simple problem that I want to get rid of and I have not seen examples where this is achieved yet although searching around the net for quite a while. ...