Files @ de0b3fbb09cd
Branch filter:

Location: website/www/conservancy/apps/worldmap/admin.py

bkuhn
Include donations in progress bar through 2014-04-20.
mjw insisted that I update this more often; he's right about that. :)
1
2
3
4
5
6
7
from django.contrib import admin
from models import EarthLocation

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

admin.site.register(EarthLocation, EarthLocationAdmin)