admin.py 411 B

123456789101112131415161718192021
  1. from django.contrib import admin
  2. from locations.models import GeoLocation
  3. from scrobbles.admin import ScrobbleInline
  4. @admin.register(GeoLocation)
  5. class GeoLocationAdmin(admin.ModelAdmin):
  6. date_hierarchy = "created"
  7. list_display = (
  8. "created",
  9. "lat",
  10. "lon",
  11. "title",
  12. "altitude",
  13. )
  14. ordering = ("-created",)
  15. inlines = [
  16. ScrobbleInline,
  17. ]