##// END OF EJS Templates
Added admin actions (showing IP, post removal). Added user ranks. This refs #61, #12
Added admin actions (showing IP, post removal). Added user ranks. This refs #61, #12

File last commit:

r112:1dfea0d0 1.1
r112:1dfea0d0 1.1
Show More
admin.py
6 lines | 153 B | text/x-python | PythonLexer
from django.contrib import admin
from boards.models import Post, Tag, User
admin.site.register(Post)
admin.site.register(Tag)
admin.site.register(User)