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