annotate oembed/admin.py @ 821:71db8076dc3d

Bandmap WIP: geocoding integrated with add form. Add form works. Before submitting the form, client side JS makes a geocode request to Google and populates hidden lat/lon fields with the result. Successfully created a model instance on the server side. Still need to update admin dashboard, admin approval, and give out badges for adding bands to the map. Once that is done, then work on displaying the map with filtering.
author Brian Neal <bgneal@gmail.com>
date Tue, 23 Sep 2014 20:40:31 -0500
parents ee87ea74d46b
children
rev   line source
bgneal@285 1 """
bgneal@285 2 Admin site definitions for the oembed application.
bgneal@285 3 """
bgneal@285 4 from django.contrib import admin
bgneal@285 5
bgneal@285 6 from oembed.models import Provider
bgneal@285 7 from oembed.models import Oembed
bgneal@285 8
bgneal@285 9
bgneal@285 10 class ProviderAdmin(admin.ModelAdmin):
bgneal@285 11 list_display = ('name', 'api_endpoint', 'format')
bgneal@285 12 list_filter = ('format', )
bgneal@285 13 search_fields = ('name', )
bgneal@285 14
bgneal@285 15
bgneal@285 16 class OembedAdmin(admin.ModelAdmin):
bgneal@285 17 date_hierarchy = 'date_added'
bgneal@285 18 list_display = ('__unicode__', 'type', 'url', 'date_added')
bgneal@285 19 list_filter = ('type', )
bgneal@285 20 search_fields = ('title', )
bgneal@285 21
bgneal@285 22
bgneal@285 23 admin.site.register(Provider, ProviderAdmin)
bgneal@285 24 admin.site.register(Oembed, OembedAdmin)