##// END OF EJS Templates
Added user to the posts. This refs #12
Added user to the posts. This refs #12

File last commit:

r112:1dfea0d0 1.1
r113:aabf6422 1.1
Show More
admin.py
6 lines | 153 B | text/x-python | PythonLexer
neko259
Initial commit. One test doesn't work, missing posting form.
r0 from django.contrib import admin
neko259
Added admin actions (showing IP, post removal). Added user ranks. This refs #61, #12
r112 from boards.models import Post, Tag, User
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)