2011-07-08 03:27:11 +00:00
|
|
|
@using System.Collections
|
|
|
|
@using NzbDrone.Web.Models
|
|
|
|
@{ Layout = null; }
|
2011-05-28 07:16:16 +00:00
|
|
|
<div>
|
2011-07-27 22:59:48 +00:00
|
|
|
<div>
|
|
|
|
<input id="newSeriesLookup" class="seriesLookup" type="text" style="width: 400px" />
|
|
|
|
</div>
|
2011-08-23 20:31:28 +00:00
|
|
|
@*<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">
|
2011-05-28 07:16:16 +00:00
|
|
|
Add</button>
|
|
|
|
</div>
|
2011-07-27 22:59:48 +00:00
|
|
|
<br />
|
2011-09-09 03:26:48 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
jQuery(document).ready(function () {
|
|
|
|
//AddNew
|
|
|
|
$('#newSeriesLookup').watermark('Title of the series you want to add...');
|
|
|
|
});
|
|
|
|
</script>
|