##// END OF EJS Templates
Fixed wrapping of the long links on the small screes (mobile phones). This fixes #15
Fixed wrapping of the long links on the small screes (mobile phones). This fixes #15

File last commit:

r11:ad336fa5 default
r73:86298773 default
Show More
admin.py
6 lines | 155 B | text/x-python | PythonLexer
from django.contrib import admin
from boards.models import Post, Tag, Admin
admin.site.register(Post)
admin.site.register(Tag)
admin.site.register(Admin)