2010-09-26 17:32:53 -04:00
|
|
|
from django.contrib import admin
|
2023-10-20 09:44:24 +11:00
|
|
|
|
|
|
|
from .models import EarthLocation
|
|
|
|
|
2010-09-26 17:32:53 -04:00
|
|
|
|
2024-03-21 09:35:00 +11:00
|
|
|
@admin.register(EarthLocation)
|
2010-09-26 17:32:53 -04:00
|
|
|
class EarthLocationAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ("label", "html_map_link")
|