##// END OF EJS Templates
Fixed an import issue in models. Removed tests for admin because the user model has changed.
Fixed an import issue in models. Removed tests for admin because the user model has changed.

File last commit:

r137:fe230882 merge 1.1
r140:aaf68ba2 1.1
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)