Files @ 8cb1f3f685eb
Branch filter:

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

brett
js: Use three-part progressbar when no middle goal defined.

Since our current fundraiser doesn't have a "middle goal," this makes
it a little easier to maintain the template and do the math.
1
2
3
4
5
6
7
from django.contrib import admin
from conservancy.apps.worldmap.models import EarthLocation

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

admin.site.register(EarthLocation, EarthLocationAdmin)