Pylint/pep8 cleanup.

This commit is contained in:
cahrens
2013-07-08 16:07:02 -04:00
parent 2cceda948c
commit 5e8e3353ca
2 changed files with 36 additions and 5 deletions

View File

@@ -7,6 +7,10 @@ from django.contrib import admin
class CourseCreatorAdmin(admin.ModelAdmin):
"""
Admin for the course creator table.
"""
# Fields to display on the overview page.
list_display = ('username', 'email', 'state', 'state_changed')
readonly_fields = ('username', 'email', 'state_changed')