all repos — comments @ 6607ea6d0de103d6b4cf98abcd81699f1ec92595

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)