Sonarr/NzbDrone.Web/Views/AddSeries/AddNew.cshtml

21 lines
815 B
Plaintext
Raw Normal View History

2011-07-08 03:27:11 +00:00
@using System.Collections
@using NzbDrone.Web.Models
@{ Layout = null; }
<div>
2011-07-27 22:59:48 +00:00
<div>
<input id="newSeriesLookup" class="seriesLookup" type="text" style="width: 400px" />
</div>
@*<input id="newSeriesPath" class="folderLookup" type="text" style="width: 400px" />*@
@Html.DropDownList("newSeriesPath", new SelectList((IList)ViewData["RootDirs"]), new { style = "width: 406px; margin-left: 0px;" })
2011-07-27 22:59:48 +00:00
@Html.DropDownList("qualityList", new SelectList((IList)ViewData["QualityList"], "QualityProfileId", "Name"), new { @class = "qualitySelector" })
<button id="saveNewSeries">
Add</button>
</div>
2011-07-27 22:59:48 +00:00
<br />
<script type="text/javascript">
jQuery(document).ready(function () {
//AddNew
$('#newSeriesLookup').watermark('Title of the series you want to add...');
});
</script>