##// END OF EJS Templates
Fixed the tests. Added exists() method for the post.
Fixed the tests. Added exists() method for the post.

File last commit:

r2:bedad771 default
r8:b62ef70f default
Show More
admin.py
5 lines | 121 B | text/x-python | PythonLexer
from django.contrib import admin
from boards.models import Post, Tag
admin.site.register(Post)
admin.site.register(Tag)