We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0df2c0d commit 9fe1820Copy full SHA for 9fe1820
1 file changed
ietf/doc/admin.py
@@ -33,6 +33,10 @@ class DocAuthorInline(admin.TabularInline):
33
34
class RelatedDocumentInline(admin.TabularInline):
35
model = RelatedDocument
36
+ def this(self, instance):
37
+ return instance.source.canonical_name()
38
+ readonly_fields = ['this', ]
39
+ fields = ['this', 'relationship', 'target', ]
40
raw_id_fields = ['target']
41
extra = 1
42
0 commit comments