Changes between Version 1 and Version 2 of Ticket #34090


Ignore:
Timestamp:
Oct 13, 2022, 2:47:11 AM (19 months ago)
Author:
spechtx
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34090 – Description

    v1 v2  
    2323admin.py:
    2424
     25
     26{{{
    2527@admin.register(ModelName)
    2628classModelNameAdminView(admin.GISModelAdmin):
    2729inlines = (RelatedIntermediateInline,)
    28 autocomplete_fields = ['....']
     30autocomplete_fields = [...']
    2931ordering = ['name', 'type', 'timestamp_created', ]
     32}}}
    3033
     34
Back to Top