view gpp/legal/admin.py @ 38:c14cfd6be87a

Added basic logging to settings.py. The send_email function is now logging. Removed remnants of the DebugLog model.
author Brian Neal <bgneal@gmail.com>
date Thu, 11 Jun 2009 01:33:38 +0000
parents dbd703f7d63a
children
line wrap: on
line source
"""This file contains the automatic admin site definitions for the legal models"""

from django.contrib import admin
from legal.models import Policy

class PolicyAdmin(admin.ModelAdmin):
   list_display = ('title', 'policy_type')

admin.site.register(Policy, PolicyAdmin)