dr.botzo/seen/admin.py
Brian S. Stephan 84ee09d4a3 migrate Seen to django models and whatnot
this also adds south and django_extensions stuff, because that is the
natural thing to do. this is a pretty good start, i think
2014-03-16 11:35:01 -05:00

13 lines
240 B
Python

from django.contrib import admin
from seen.models import SeenNick
class SeenNickAdmin(admin.ModelAdmin):
list_display = ('__unicode__', 'seen_time')
admin.site.register(SeenNick, SeenNickAdmin)
# vi:tabstop=4:expandtab:autoindent