mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -07:00
Improve image export help text on export modal
This commit is contained in:
parent
4d033bb379
commit
e8b0de0320
1 changed files with 13 additions and 4 deletions
|
@ -13,7 +13,12 @@ data :: Usable parameters
|
|||
|
||||
DOCUMENTATION :: END
|
||||
</%doc>
|
||||
|
||||
<%
|
||||
from plexpy import exporter
|
||||
export = exporter.Export()
|
||||
thumb_media_types = ', '.join([export.PLURAL_MEDIA_TYPES[k] for k, v in export.MEDIA_TYPES.items() if v[0]])
|
||||
art_media_types = ', '.join([export.PLURAL_MEDIA_TYPES[k] for k, v in export.MEDIA_TYPES.items() if v[1]])
|
||||
%>
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
|
@ -95,16 +100,20 @@ DOCUMENTATION :: END
|
|||
<label>
|
||||
<input type="checkbox" id="export_include_thumb" name="export_include_thumb" value="1"> Export poster / cover images
|
||||
</label>
|
||||
<p class="help-block">
|
||||
Enable to export poster and cover image files.<br>Note: Only applies to ${thumb_media_types}.
|
||||
</p>
|
||||
</div>
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
<input type="checkbox" id="export_include_art" name="export_include_art" value="1"> Export background artwork images
|
||||
</label>
|
||||
<p class="help-block">
|
||||
Enable to export background artwork image files.<br>Note: Only applies to ${art_media_types}.
|
||||
</p>
|
||||
</div>
|
||||
<p class="help-block">
|
||||
Enable to export posters and covers or background artwork image files. Images will be saved to a folder alongside the data file.<br>
|
||||
Warning: Exporting images may take a long time!<br>
|
||||
Note: Only applies to movies, shows, seasons, artists, albums, collections, and playlists.
|
||||
Warning: Exporting images may take a long time! Images will be saved to a folder alongside the data file.
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue