##// END OF EJS Templates
Allow linked tags to have cyclic dependancies
Allow linked tags to have cyclic dependancies

File last commit:

r137:fe230882 merge 1.1
r286:ad629f57 default
Show More
admin.py
7 lines | 183 B | text/x-python | PythonLexer
neko259
Initial commit. One test doesn't work, missing posting form.
r0 from django.contrib import admin
neko259
Merged with default branch
r137 from boards.models import Post, Tag, User, Ban
neko259
Initial commit. One test doesn't work, missing posting form.
r0
admin.site.register(Post)
neko259
Added the new posting abstraction.
r2 admin.site.register(Tag)
neko259
Added admin actions (showing IP, post removal). Added user ranks. This refs #61, #12
r112 admin.site.register(User)
neko259
Merged with default branch
r137 admin.site.register(Ban)