Ich habe versucht, einen generischen Fremdschlüssel im Django Admin anzuzeigen, aber es funktioniert nicht. Ich habe eine FullCitation-Klasse, die entweder mit einer NonSupportedProgram- oder einer SupportedProgram-Klasse verknüpft werden kann. Also habe ich einen generischen Fremdschlüssel benutzt.Generische Beziehungen/Generische Fremdschlüssel im Django Admin
Im admin möchte ich, dass Benutzer nur "NonSupportedProgram" oder "SupportedProgram" aus dem Dropdown-Menü content_type auswählen können. Dann müssen die Benutzer aus dem object_id-Feld aus einem Dropdown-Listenfeld auswählen können NonSuportedPrograms oder die vorhandenen unterstützten Programme, mit der Option, ein neues zu erstellen. Ist das möglich? Wo gehe ich falsch?
models.py
class FullCitation(models.Model)
# the software to which this citation belongs
# either a supported software program or a non-supported software program
limit = models.Q(app_label = 'myprograms', model = 'supportedprogram') | models.Q(app_label = 'myprograms', model = 'nonsupportedprogram')
content_type = models.ForeignKey(ContentType), limit_choices_to = limit,)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')
is_primary = models.BooleanField(help_text="Is this the Primary Citation for the software program?")
class Meta:
unique_together = ('content_type', 'object_id')
app_label = 'myprograms'
reversion.register(FullCitation)
class NonSupportedProgram(models.Model):
title = models.CharField(max_length=256, blank = True)
full_citation = generic.GenericRelation('FullCitation')
class Meta:
app_label = 'myprograms'
reversion.register(NonSBGridProgram)
class SupportedProgram(models.Model):
title = models.CharField(max_length=256, blank = True)
full_citation = generic.GenericRelation('FullCitation')
# and a bunch of other fields.....
admin.py
class FullCitationAdmin(reversion.VersionAdmin):
fieldsets = (
('Which Program', {
'fields': ('content_type', 'object_id',),
}),
('Citation Information', {
'fields': ('is_primary',),
}),)
# autocomplete_lookup_fields = {
# 'generic': [['content_type', 'object_id']],
# }
# inlines = ['NonSupportedProgramInline', ]
list_display = ('content_object', 'is_primary',)
search_fields = ('content_object__title',)
# list_filter = ('content_object',)
Haben Sie das jemals behoben? – Sardathrion
Nein, habe es nie herausgefunden. Ich musste diesen Ansatz stoppen und etwas völlig anderes machen. Nicht genau was ich wollte, aber naja. – steph
Bummer. Vielen Dank. – Sardathrion