Skip to content
Permalink
0cdec88f18
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
17 lines (16 sloc) 473 Bytes
from django.contrib import admin
from .models import *
admin.site.register(Publication)
admin.site.register(Author)
admin.site.register(Citation)
admin.site.register(Part)
admin.site.register(Chapter)
admin.site.register(Section)
admin.site.register(Subsection)
admin.site.register(Subsubsection)
admin.site.register(Paragraph)
admin.site.register(MixedContent)
admin.site.register(Text)
admin.site.register(Table)
admin.site.register(Figure)
# Register your models here.