summaryrefslogtreecommitdiff
path: root/comments/admin.py
diff options
context:
space:
mode:
authorhardythe12015-08-31 13:33:56 +0530
committerhardythe12015-08-31 13:33:56 +0530
commit833396607a4217779f7e1b944d5e56f6b236f052 (patch)
tree3216b263126f4ca996e4bd45d6f880214c1cd5df /comments/admin.py
parentce1e0bce6655d0118d8e8ad1ce866fb730d5309d (diff)
downloadPython-TBC-Interface-833396607a4217779f7e1b944d5e56f6b236f052.tar.gz
Python-TBC-Interface-833396607a4217779f7e1b944d5e56f6b236f052.tar.bz2
Python-TBC-Interface-833396607a4217779f7e1b944d5e56f6b236f052.zip
change to activate our comment app
Diffstat (limited to 'comments/admin.py')
-rw-r--r--comments/admin.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/comments/admin.py b/comments/admin.py
new file mode 100644
index 0000000..6ac89ae
--- /dev/null
+++ b/comments/admin.py
@@ -0,0 +1,5 @@
+from models import *
+from django.contrib import admin
+
+admin.site.register(Comment)
+admin.site.register(Reply)