diff --git a/data/interfaces/default/base.html b/data/interfaces/default/base.html index 8d577e3b..fbfad400 100644 --- a/data/interfaces/default/base.html +++ b/data/interfaces/default/base.html @@ -174,42 +174,42 @@ from plexpy import version - % if title=="Home": + % if title == "Home":
  • % else:
  • % endif - % if title=="Libraries" or title=="Library": + % if title == "Libraries" or title == "Library" or title == "Info":
  • Libraries
  • % else:
  • Libraries
  • % endif - % if title=="Users" or title=="User": + % if title == "Users" or title == "User":
  • Users
  • % else:
  • Users
  • % endif - % if title=="History": + % if title == "History":
  • History
  • % else:
  • History
  • % endif - % if title=="Graphs": + % if title == "Graphs":
  • Graphs
  • % else:
  • Graphs
  • % endif - % if title=="Synced Items": + % if title == "Synced Items":
  • Synced Items
  • % else:
  • Synced Items
  • % endif - % if title=="Log": + % if title == "Log":
  • Logs
  • % else:
  • Logs
  • % endif - % if title=="Settings": + % if title == "Settings":
  • Settings
  • % else:
  • Settings
  • diff --git a/data/interfaces/default/css/plexpy.css b/data/interfaces/default/css/plexpy.css index 85553887..0074f35e 100644 --- a/data/interfaces/default/css/plexpy.css +++ b/data/interfaces/default/css/plexpy.css @@ -2463,6 +2463,7 @@ a .home-platforms-instance-list-oval:hover, } #users-to-delete > li, #users-to-purge > li, +#libraries-to-delete > li, #libraries-to-purge > li { color: #e9a049; } diff --git a/data/interfaces/default/current_activity.html b/data/interfaces/default/current_activity.html index bb0949e0..5b4ab21e 100644 --- a/data/interfaces/default/current_activity.html +++ b/data/interfaces/default/current_activity.html @@ -72,9 +72,9 @@ DOCUMENTATION :: END % endif
    - % if a['media_type'] == 'movie' and not a['indexes']: + % if (a['media_type'] == 'movie' and not a['indexes']) or (a['indexes'] and not a['view_offset']):
    - % elif a['media_type'] == 'episode' and not a['indexes']: + % elif (a['media_type'] == 'episode' and not a['indexes']) or (a['indexes'] and not a['view_offset']):
    % elif a['indexes']: diff --git a/data/interfaces/default/edit_library.html b/data/interfaces/default/edit_library.html index 056de42c..f3d86190 100644 --- a/data/interfaces/default/edit_library.html +++ b/data/interfaces/default/edit_library.html @@ -14,6 +14,8 @@ section_id Returns the library id of the library. section_name Returns the name of the library. section_type Returns the type of the library. library_thumb Returns the thumbnail for the library. +custom_thumb Returns the custom thumbnail for the library. +library_art Returns the artwork for the library. count Returns the item count for the library. parent_count Returns the parent item count for the library. child_count Returns the child item count for the library. @@ -40,11 +42,7 @@ DOCUMENTATION :: END
    - % if data['custom_thumb']: - - % else: - % endif

    Change the library's picture in PlexPy. To reset to default, leave this field empty and save.

    @@ -61,6 +59,12 @@ DOCUMENTATION :: END

    Uncheck this if you do not want this keep any history on this library's activity.

    +
    + +

    Uncheck this if you do not want to receive recently added notifications for this library.

    +
    % if data['section_id']:
    @@ -96,14 +100,18 @@ DOCUMENTATION :: END
    - % endif \ No newline at end of file diff --git a/data/interfaces/default/edit_user.html b/data/interfaces/default/edit_user.html index 502ab11a..583a918e 100644 --- a/data/interfaces/default/edit_user.html +++ b/data/interfaces/default/edit_user.html @@ -10,21 +10,30 @@ Variable names: data [list] data :: Usable parameters == Global keys == -user Return the real Plex username -user_id Return the Plex user_id -friendly_name Returns the friendly edited Plex username -do_notify Returns bool value for whether the user should trigger notifications -keep_history Returns bool value for whether the user's activity should be logged +user_id Returns the user id of the user. +username Returns the user's username. +friendly_name Returns the friendly name of the user. +email Returns the user's email address. +user_thumb Returns the thumbnail for the user. +is_home_user Returns bool value for whether the user is part of a Plex Home. +is_allow_sync Returns bool value for whether the user has sync rights. +is_restricted Returns bool value for whether the user account is restricted. +do_notify Returns bool value for whether to send notifications for the user. +keep_history Returns bool value for whether to keep history for the user. DOCUMENTATION :: END -% if data is not None: +<%! + from plexpy import helpers +%> + +% if data != None: - % endif \ No newline at end of file diff --git a/data/interfaces/default/info.html b/data/interfaces/default/info.html index fa10faeb..2e272799 100644 --- a/data/interfaces/default/info.html +++ b/data/interfaces/default/info.html @@ -11,15 +11,15 @@ data :: Usable parameters (if not applicable for media type, blank value will be == Global keys == rating_key Returns the unique identifier for the media item. -media_type Returns the type of media. Either 'movie', 'show', 'season', 'episode', 'artist', 'album', or 'track'. +media_type Returns the type of media. Either 'movie', 'show', 'season', 'episode', 'artist', 'album', or 'track'. art Returns the location of the item's artwork title Returns the name of the movie, show, episode, artist, album, or track. duration Returns the standard runtime of the media. content_rating Returns the age rating for the media. summary Returns a brief description of the media plot. grandparent_title Returns the name of the show, or artist. -parent_index Returns the index number of the season. -index Returns the index number of the episode, or track. +parent_media_index Returns the index number of the season. +media_index Returns the index number of the episode, or track. parent_thumb Returns the location of the item's thumbnail. Use with pms_image_proxy. writers Returns an array of writers. thumb Returns the location of the item's thumbnail. Use with pms_image_proxy. @@ -54,29 +54,29 @@ DOCUMENTATION :: END