9 lines
139 B
Python
9 lines
139 B
Python
"""Manage pi models in the admin interface."""
|
|
|
|
from django.contrib import admin
|
|
|
|
from pi.models import PiLog
|
|
|
|
|
|
admin.site.register(PiLog)
|