Changes between Version 2 and Version 3 of Ticket #34090


Ignore:
Timestamp:
Oct 13, 2022, 2:47:49 AM (2 years ago)
Author:
spechtx
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34090 – Description

    v2 v3  
    88
    99
     10
     11{{{
    1012class RelatedM2M(models.Model):
    1113choice = models.CharField(max_length=255, unique=True)
     
    1921type_intermediate = models.ManyToManyField(AnotherRelatedM2M, through='RelatedIntermediate')
    2022geometry = models.GeometryField(...)
     23}}}
     24
    2125
    2226
     
    2832classModelNameAdminView(admin.GISModelAdmin):
    2933inlines = (RelatedIntermediateInline,)
    30 autocomplete_fields = [...']
     34autocomplete_fields = ['...']
    3135ordering = ['name', 'type', 'timestamp_created', ]
    3236}}}
Back to Top