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
10 lines
201 B
Python
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)
|