##// END OF EJS Templates
Added proper russian translation of the template code. The form validation messages are not yet translated. This refs #36
Added proper russian translation of the template code. The form validation messages are not yet translated. This refs #36

File last commit:

r11:ad336fa5 default
r83:597e046e 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)