##// END OF EJS Templates
Removed the image height hardcoded in the CSS. It is useless now because of...
Removed the image height hardcoded in the CSS. It is useless now because of the refmaps that move the focus on page loading. Fixed validation in the thread id.

File last commit:

r116:81f8bb6b default
r134:23ff671e default
Show More
admin.py
6 lines | 184 B | text/x-python | PythonLexer
from django.contrib import admin
from boards.models import Post, Tag, Admin, Ban
admin.site.register(Post)
admin.site.register(Tag)
admin.site.register(Admin)
admin.site.register(Ban)