mirror of
https://github.com/Radarr/Radarr
synced 2025-03-03 18:36:41 +00:00
Fixed typo in Trim History confirmation.
New: Added warning to Settings -> Misc regarding backlog searching.
This commit is contained in:
parent
2edb5308ab
commit
f50494ea9b
2 changed files with 6 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
||||||
@{ViewBag.Title = "History";}
|
@{ViewBag.Title = "History";}
|
||||||
@section ActionMenu{
|
@section ActionMenu{
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu">
|
||||||
<li>@Ajax.ActionLink("Trim History", "Trim", "History", null, new AjaxOptions{ OnSuccess = "reloadGrid", Confirm = "Delete history items older than 30 days??"})</li>
|
<li>@Ajax.ActionLink("Trim History", "Trim", "History", null, new AjaxOptions{ OnSuccess = "reloadGrid", Confirm = "Delete history items older than 30 days?"})</li>
|
||||||
<li>@Ajax.ActionLink("Purge History", "Purge", "History", null, new AjaxOptions{ OnSuccess = "reloadGrid", Confirm = "Purge all history items?" })</li>
|
<li>@Ajax.ActionLink("Purge History", "Purge", "History", null, new AjaxOptions{ OnSuccess = "reloadGrid", Confirm = "Purge all history items?" })</li>
|
||||||
</ul>
|
</ul>
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
@using NzbDrone.Web.Helpers
|
@using NzbDrone.Web.Helpers
|
||||||
@model NzbDrone.Web.Models.MiscSettingsModel
|
@model NzbDrone.Web.Models.MiscSettingsModel
|
||||||
@{ Layout = null; }
|
@{ Layout = null; }
|
||||||
|
|
||||||
|
<div class="warningBox">
|
||||||
|
Enabling Backlog searching will use lots of bandwidth, not recommended when using block accounts or you have bandwidth restrictions
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="stylized">
|
<div id="stylized">
|
||||||
@using (Html.BeginForm("SaveMisc", "Settings", FormMethod.Post, new { id = "MiscForm", name = "MiscForm", @class = "settingsForm" }))
|
@using (Html.BeginForm("SaveMisc", "Settings", FormMethod.Post, new { id = "MiscForm", name = "MiscForm", @class = "settingsForm" }))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue