##// 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
neko259
Initial commit. One test doesn't work, missing posting form.
r0 from django.contrib import admin
neko259
Added IP ban lists. Added migration for bans. Use generic ip address for posting instead of ipv4 only.
r116 from boards.models import Post, Tag, Admin, 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
Renamed model "admins" to "admin".
r11 admin.site.register(Admin)
neko259
Added IP ban lists. Added migration for bans. Use generic ip address for posting instead of ipv4 only.
r116 admin.site.register(Ban)