Mercurial > public > sg101
view gpp/gcalendar/admin.py @ 11:cc8eb028def1
Update jquery-ui and theme version that is hosted on google. In preparation for having jquery on every page (?), make it so that the autocomplete plug is using the 'global' jquery, and not the one that came with it. It seems to work okay with jquery 1.3.2.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 14 Apr 2009 02:35:35 +0000 |
parents | dbd703f7d63a |
children | e04d91babfcf |
line wrap: on
line source
""" This file contains the automatic admin site definitions for the gcalendar application. """ from django.contrib import admin from django.http import HttpResponse from django.conf.urls.defaults import * from gcalendar.models import Event from gcalendar.admin_views import google_sync class EventAdmin(admin.ModelAdmin): list_display = ('what', 'user', 'start_date', 'where', 'date_submitted', 'status', 'needs_approval') list_filter = ('start_date', 'status') search_fields = ('what', 'where', 'description') raw_id_fields = ('user', ) exclude = ('html', 'google_id') save_on_top = True def get_urls(self): urls = super(EventAdmin, self).get_urls() my_urls = patterns('', url(r'^google_sync/$', self.admin_site.admin_view(google_sync), name="gcalendar-google_sync") ) return my_urls + urls admin.site.register(Event, EventAdmin) # vim: ts=4 sw=4