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