##// END OF EJS Templates
Added autoban by the hidden field (to ban spammers and prevent them from trying to post anything).
Added autoban by the hidden field (to ban spammers and prevent them from trying to post anything).

File last commit:

r137:fe230882 merge 1.1
r271:ac659dae default
Show More
admin.py
7 lines | 183 B | text/x-python | PythonLexer
from django.contrib import admin
from boards.models import Post, Tag, User, Ban
admin.site.register(Post)
admin.site.register(Tag)
admin.site.register(User)
admin.site.register(Ban)