Files @ 2b709f61e022
Branch filter:

Location: website/conservancy/worldmap/admin.py

bsturmfels
Make bin/deploy abort if there's an error with `git push`

For example, your push failed because there's upstream changes.
1
2
3
4
5
6
7
8
9
from django.contrib import admin

from .models import EarthLocation


class EarthLocationAdmin(admin.ModelAdmin):
    list_display = ("label", "html_map_link")

admin.site.register(EarthLocation, EarthLocationAdmin)