diff --git a/README.md b/README.md index 1212e9ab..1a30748c 100644 --- a/README.md +++ b/README.md @@ -65,9 +65,9 @@ A python based web front-end for plexWatch. - top 10 viewed tv shows - top 10 viewed tv episodes -* content information pages **PARTIALLY IMPLEMENTED** +* content information pages - movies (includes watching history) - - tv shows (includes top 10 watched episodes) + - tv shows (includes watching history) - tv seasons - tv episodes (includes watching history) diff --git a/data/interfaces/default/css/plexwatch.css b/data/interfaces/default/css/plexwatch.css index c1e151f1..f9cef5cb 100644 --- a/data/interfaces/default/css/plexwatch.css +++ b/data/interfaces/default/css/plexwatch.css @@ -8149,4 +8149,10 @@ ol.test >li { background-color: #282828; margin-right: 20px; margin-bottom: 20px; +} + +.history-table-title { + text-overflow: ellipsis; + overflow: hidden; + max-width: 350px; } \ No newline at end of file diff --git a/data/interfaces/default/info.html b/data/interfaces/default/info.html index 6d92d34b..9883ad76 100644 --- a/data/interfaces/default/info.html +++ b/data/interfaces/default/info.html @@ -136,7 +136,7 @@
- % if metadata['type'] == 'movie' or metadata['type'] == 'episode': + % if metadata['type'] == 'movie' or metadata['type'] == 'episode' or metadata['type'] == 'show':

Watch history for ${metadata['title']}

@@ -221,7 +221,21 @@ history_table.column(5).visible(false); }); - %endif + % elif metadata['type'] == 'show': + + + % endif % if metadata['type'] == 'season':