blechreiz-website/simpleforum/admin.py

4 lines
101 B
Python
Raw Permalink Normal View History

from django.contrib import admin
from simpleforum.models import Message
admin.site.register(Message)