diff --git a/README.md b/README.md index dca32d8..5875fcd 100644 --- a/README.md +++ b/README.md @@ -45,12 +45,12 @@ Basic options |key|meaning|example| |---|---|---| -|port|8081|http port to listen on| -|debug|true|run the server in debug mode| -|library_path|/data/library|file path to tv media library| -|label|"sickrage"|deluge label to look for sortable torrents under| -|label_done|"sorted"|deluge label to mark sortable torrents as| -|stashprefix|"Sorted"|when stashing torrents, prefix for the stash path| +|port|http port to listen on|`8081`| +|debug|run the server in debug mode|`true`| +|library_path|file path to tv media library|`/data/library`| +|label|deluge label to look for sortable torrents under|`"sickrage"`| +|label_done|deluge label to mark sortable torrents as|`"sorted"`| +|stashprefix|when stashing torrents, prefix for the stash path|`"Sorted"`| Beyond these options, mediasort has several more options to tune how it sorts your media that require more explanation. diff --git a/templates/index.html b/templates/index.html index b195590..f929c9d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -22,7 +22,7 @@ {% for torid, tor in torrents.items()|tsortbyname %}{% if tor.is_finished %} - {{ torid[0:6] }} + {{ torid[0:8] }} {{ tor.name }}
{{ tor.save_path }} @@ -65,21 +65,25 @@ {% endif %}{% endfor %} -

Shows

- - - - - - - {% for show in shows %} - - - - - - {% endfor %} -
namepathsorting
{{ show.name }}{{ show.dir }}{{ show.mode }}
+
+
+ Library information + + + + + + + {% for show in shows %} + + + + + + {% endfor %} +
namepathsorting
{{ show.name }}{{ show.dir }}{{ show.mode }}
+
+
{% endblock %} \ No newline at end of file diff --git a/templates/page.html b/templates/page.html index 550c28f..43fc0a6 100644 --- a/templates/page.html +++ b/templates/page.html @@ -32,6 +32,12 @@ .right { float: right; } + .libraryinfo { + margin-top: 30px; + } + details summary:hover { + cursor: pointer; + }