##// END OF EJS Templates
Moved 'favorite' link in tag list to the beginning to align them
Moved 'favorite' link in tag list to the beginning to align them

File last commit:

r137:fe230882 merge 1.1
r290:5c9ac652 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)