##// END OF EJS Templates
Added users with unique (sort of) IDs. Moved theme setting to user instead of session. This refs #61
Added users with unique (sort of) IDs. Moved theme setting to user instead of session. This refs #61

File last commit:

r11:ad336fa5 default
r110:34858abe 1.1
Show More
admin.py
6 lines | 155 B | text/x-python | PythonLexer
neko259
Initial commit. One test doesn't work, missing posting form.
r0 from django.contrib import admin
neko259
Renamed model "admins" to "admin".
r11 from boards.models import Post, Tag, Admin
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)