all repos — comments @ bd3b6617067c3d06405b32e99ca1483ed7898254

django app for embedding comment threads in a static site via iframes

admin.py (raw)

1
2
3
4
5
6
from django.contrib import admin

from .models import Thread, Comment

admin.site.register(Thread)
admin.site.register(Comment)