Skip to content

Commit

Permalink
Basic admin support (Project only)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Jan 15, 2012
1 parent 268cd15 commit 35f6f81
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sentry/admin.py
@@ -0,0 +1,9 @@
from django.contrib import admin
from sentry.models import Project


class ProjectAdmin(admin.ModelAdmin):
list_display = ('name', 'owner', 'public', 'date_added', 'status')
list_filter = ('public', 'status')

admin.site.register(Project, ProjectAdmin)

0 comments on commit 35f6f81

Please sign in to comment.