dr.botzo/dr_botzo/karma/admin.py
Brian S. Stephan 062348ef99 karma: app for managing karma, aka ++s and --s
this is a djangoification of the old (really old, actually) karma stuff
written by mike bloy. functionality should be the same, and might be a
bit faster through the ORM now
2015-05-19 21:57:01 -05:00

10 lines
201 B
Python

"""Manage karma models in the admin interface."""
from django.contrib import admin
from karma.models import KarmaKey, KarmaLogEntry
admin.site.register(KarmaKey)
admin.site.register(KarmaLogEntry)