view gpp/legal/admin.py @ 13:777451a98f9d

Shoutbox work: shouts now have absolute URLs. Shouts can now be flagged as abuse. Minor tweak to breadcrumbs css. Added flag date to comments admin.
author Brian Neal <bgneal@gmail.com>
date Thu, 16 Apr 2009 02:00:17 +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)