diff --git a/gui/slick/views/config_notifications.mako b/gui/slick/views/config_notifications.mako index c6b656d105dd4e37ae2de0af34cf26ebed33cdf8..2573c4fe09e7822146345f19465a32ccdcca7585 100644 --- a/gui/slick/views/config_notifications.mako +++ b/gui/slick/views/config_notifications.mako @@ -806,10 +806,10 @@ </label> <label> <span class="component-title"> </span> - <span class="component-desc">Prowl API(s) listed here, separated by commas if applicable, will<br /> receive notifications for <b>all</b> shows. + <span class="component-desc">Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at: <a href="${anon_url('https://www.prowlapp.com/api_settings.php')}" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;"> - https://www.prowlapp.com/api_settings.php</a><br /> + https://www.prowlapp.com/api_settings.php</a><br> (This field may be blank except when testing.)</span> </label> </div> @@ -1760,7 +1760,7 @@ </label> <label> <span class="component-title"> </span> - <span class="component-desc">Email addresses listed here, separated by commas if applicable, will<br /> receive notifications for <b>all</b> shows.<br /> + <span class="component-desc">Email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.<br> (This field may be blank except when testing.)</span> </label> </div> diff --git a/gui/slick/views/displayShow.mako b/gui/slick/views/displayShow.mako index 3e167a0a44bcea354c769a143371a6a148bc9db9..0ae2d1c255690f5d4bf045e828cda2d44507ae06 100644 --- a/gui/slick/views/displayShow.mako +++ b/gui/slick/views/displayShow.mako @@ -113,7 +113,7 @@ <div id="showinfo"> % if 'rating' in show.imdb_info: - <% rating_tip = str(show.imdb_info['rating']) + " / 10" + " Stars" + "<br />" + str(show.imdb_info['votes']) + " Votes" %> + <% rating_tip = str(show.imdb_info['rating']) + " / 10" + " Stars" + "<br>" + str(show.imdb_info['votes']) + " Votes" %> <span class="imdbstars" qtip-content="${rating_tip}">${show.imdb_info['rating']}</span> % endif @@ -228,7 +228,7 @@ <div class="clearfix"></div> <div class="pull-left" > - Change selected episodes to:</br> + Change selected episodes to:<br> <select id="statusSelect" class="form-control form-control-inline input-sm"> <% availableStatus = [WANTED, SKIPPED, IGNORED, FAILED] %> % if not sickbeard.USE_FAILED_DOWNLOADS: @@ -245,7 +245,7 @@ <input class="btn btn-inline" type="button" id="changeStatus" value="Go" /> </div> - </br> + <br> <div class="pull-right clearfix" id="checkboxControls"> <div style="padding-bottom: 5px;"> @@ -262,9 +262,9 @@ <button class="btn btn-xs clearAll">Clear All</button> </div> </div> -<br /> -<br /> -<br /> +<br> +<br> +<br> <table id="${("showTable", "animeTable")[bool(show.is_anime)]}" class="displayShowTable display_show" cellspacing="0" border="0" cellpadding="0"> <% curSeason = -1 %> diff --git a/gui/slick/views/inc_blackwhitelist.mako b/gui/slick/views/inc_blackwhitelist.mako index 86793b5db79b2056537388f4de28605ea82f5208..b24f155be8d7a08bd0356b0c249db720a5841f04 100644 --- a/gui/slick/views/inc_blackwhitelist.mako +++ b/gui/slick/views/inc_blackwhitelist.mako @@ -9,7 +9,7 @@ <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p> <p>You may also add any fansub group not listed to either list manually.</p> <p>When doing this please note that you can only use groups listed on anidb for this anime. - </br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p> + <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p> </div> <div class="bwlWrapper" id="Anime"> <div class="blackwhitelist all"> @@ -48,13 +48,13 @@ <input class="btn" id="removeB" value="Remove" type="button"/> </div> </div> - <br style="clear:both" /> + <br style="clear:both"> <div class="blackwhitelist manual"> <input type="text" id="addToPoolText" class="form-control form-control-inline input-sm input250" autocapitalize="off" /> <input class="btn btn-inline" type="button" value="Add to Whitelist" id="addToWhite"> <input class="btn btn-inline" type="button" value="Add to Blacklist" id="addToBlack"> </div> </div> - <br style="clear:both" /> + <br style="clear:both"> </div> </div> diff --git a/gui/slick/views/manage_manageSearches.mako b/gui/slick/views/manage_manageSearches.mako index 3a2ee26f97c85aea44892082c6521d4ae3a77477..9d48992de3c2f482dbd9747d4afa7757c4ceb141 100644 --- a/gui/slick/views/manage_manageSearches.mako +++ b/gui/slick/views/manage_manageSearches.mako @@ -56,10 +56,10 @@ ${('Not in progress', 'In Progress')[dailySearchStatus]}<br> <br> <h3>Search Queue:</h3> -Backlog: <i>${queueLength['backlog']} pending items</i></br> -Daily: <i>${queueLength['daily']} pending items</i></br> -Manual: <i>${queueLength['manual']} pending items</i></br> -Failed: <i>${queueLength['failed']} pending items</i></br> +Backlog: <i>${queueLength['backlog']} pending items</i><br> +Daily: <i>${queueLength['daily']} pending items</i><br> +Manual: <i>${queueLength['manual']} pending items</i><br> +Failed: <i>${queueLength['failed']} pending items</i><br> </div> </div> </%block>