Polpo Tv, Menu standard

This commit is contained in:
Alhaziel
2020-03-11 19:23:34 +01:00
parent 03e8d0223d
commit 64f9338ce7
+15 -7
View File
@@ -18,13 +18,21 @@ list_quality = ['1080p','720p','480p','360p']
@support.menu @support.menu
def mainlist(item): def mainlist(item):
menu = [ # menu = [
('Ultimi Film aggiunti', ['/api/movies', 'peliculas', '']), # ('Ultimi Film aggiunti', ['/api/movies', 'peliculas', '']),
('Ultime Serie TV aggiunte', ['/api/shows', 'peliculas', '']), # ('Ultime Serie TV aggiunte', ['/api/shows', 'peliculas', '']),
('Generi', ['/api/genres', 'search_movie_by_genre', '']), # ('Generi', ['/api/genres', 'search_movie_by_genre', '']),
('Anni {film}', ['', 'search_movie_by_year', '']), # ('Anni {film}', ['', 'search_movie_by_year', '']),
('Cerca... bold', ['', 'search', '']) # ('Cerca... bold', ['', 'search', ''])
] # ]
film = ['/api/movies',
('Generi', ['/api/genres', 'search_movie_by_genre', '']),
('Anni', ['', 'search_movie_by_year', '']),]
tvshow=['/api/shows']
search=''
return locals() return locals()
def newest(categoria): def newest(categoria):