diff --git a/data/interfaces/default/css/tautulli.css b/data/interfaces/default/css/tautulli.css index 14e897ed..dad492e4 100644 --- a/data/interfaces/default/css/tautulli.css +++ b/data/interfaces/default/css/tautulli.css @@ -4209,3 +4209,8 @@ a[data-tab-destination] { top: 0; z-index: 9999; } + +.help-block li { + margin-top: 0; + color: #737373; +} \ No newline at end of file diff --git a/data/interfaces/default/settings.html b/data/interfaces/default/settings.html index 608b29ac..c80d6014 100644 --- a/data/interfaces/default/settings.html +++ b/data/interfaces/default/settings.html @@ -1588,7 +1588,7 @@

List Slicing

-
+

Notification parameters which have a list of items can be sliced with a slice formatter :[X:Y] to limit the number of items. Note: the first item in the list is numbered 0. @@ -1599,6 +1599,41 @@ {actors:[2:]} --> Only the 3rd to last actors (Actors: 2, 3, 4, ...) {actors:[1:5]} --> Only the 2nd to 5th actors (Actors: 1, 2, 3, 4)

+
+

Prefix and Suffix

+
+
+

+ A prefix or a suffix can be added to the notification parameters using Prefix< and >Suffix. + If the notification parameter is unavailable, the prefix or suffix will not be displayed. +

+

Example:

+
{rating}              --> 8.9
+{Rating: <rating}     --> Rating: 8.9
+{rating>/10}          --> 8.9/10
+{Rating: <rating>/10} --> Rating: 8.9/10
+

Example with unavailable parameter:

+
{rating}              -->
+Rating: {rating}/10   --> Rating: /10
+{Rating: <rating>/10} --> 
+
+
+

Combined

+
+
+

+ If combining multiple notification text modifiers, the order of the modifiers must be: +

+
    +
  1. Prefix
  2. +
  3. Parameter
  4. +
  5. Case Modifier
  6. +
  7. List Slicing
  8. +
  9. Suffix
  10. +
+

Example:

+
{Starring <actors!c:[0]> as the main character.} --> Starring Arnold Schwarzenegger as the main character.
+