diff options
author | hardythe1 | 2015-08-31 13:33:56 +0530 |
---|---|---|
committer | hardythe1 | 2015-08-31 13:33:56 +0530 |
commit | 833396607a4217779f7e1b944d5e56f6b236f052 (patch) | |
tree | 3216b263126f4ca996e4bd45d6f880214c1cd5df /comments/admin.py | |
parent | ce1e0bce6655d0118d8e8ad1ce866fb730d5309d (diff) | |
download | Python-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.py | 5 |
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) |