26 lines
477 B
Python
26 lines
477 B
Python
![]() |
from .book.models import Edition, Work, Series
|
||
|
from .movie.models import Movie
|
||
|
from .tv.models import TVShow, TVSeason, TVEpisode
|
||
|
from .music.models import Album
|
||
|
from .game.models import Game
|
||
|
from .podcast.models import Podcast
|
||
|
from .performance.models import Performance
|
||
|
|
||
|
|
||
|
# class Exhibition(Item):
|
||
|
|
||
|
# class Meta:
|
||
|
# proxy = True
|
||
|
|
||
|
|
||
|
# class Fanfic(Item):
|
||
|
|
||
|
# class Meta:
|
||
|
# proxy = True
|
||
|
|
||
|
|
||
|
# class Boardgame(Item):
|
||
|
|
||
|
# class Meta:
|
||
|
# proxy = True
|