1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 19:12:38 +01:00
Radarr/NzbDrone.Web/Views/AddSeries/AddNew.cshtml

20 lines
725 B
Plaintext
Raw Normal View History

2011-07-08 05:27:11 +02:00
@using System.Collections
@{ Layout = null; }
<div>
2011-07-28 00:59:48 +02:00
<div>
<input id="newSeriesLookup" class="seriesLookup" type="text" style="width: 400px" />
@Html.Hidden("newSeriesId", 0, new { @class = "seriesId" })
2011-07-28 00:59:48 +02:00
</div>
@Html.DropDownList("newSeriesPath", new SelectList((IList)ViewData["RootDirs"]), new { style = "width: 406px; margin-left: 0px;" })
@Html.DropDownList("qualityList", (SelectList)ViewData["QualityProfiles"], new { @class = "qualitySelector" })
2011-07-28 00:59:48 +02:00
<button id="saveNewSeries">
Add</button>
</div>
2011-07-28 00:59:48 +02:00
<br />
<script type="text/javascript">
2011-12-08 06:44:36 +01:00
$(document).ready(function () {
//AddNew
$('#newSeriesLookup').watermark('Title of the series you want to add...');
});
</script>