2011-03-08 23:40:48 -08:00
|
|
|
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<NzbDrone.Core.Repository.RootDir>" %>
|
|
|
|
<%@ Import Namespace="NzbDrone.Web.Helpers" %>
|
2011-03-28 16:38:05 -07:00
|
|
|
<%
|
2011-04-09 19:44:01 -07:00
|
|
|
using (Html.BeginCollectionItem("Directories"))
|
|
|
|
{%>
|
|
|
|
<%
|
|
|
|
var idClean = ViewData.TemplateInfo.HtmlFieldPrefix.Replace('[', '_').Replace(']', '_');
|
|
|
|
//string sortable1 = String.Format("{0}_sortable1", idClean);
|
2011-03-28 16:38:05 -07:00
|
|
|
%>
|
|
|
|
<style type="text/css">
|
|
|
|
.root_dir_text
|
|
|
|
{
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="rootDirSection">
|
2011-04-18 17:12:06 -07:00
|
|
|
<fieldset>
|
2011-03-28 16:38:05 -07:00
|
|
|
<div>
|
2011-04-09 19:44:01 -07:00
|
|
|
<%:Html.TextBoxFor(m => m.Path, new {@class = "root_dir_text"})%>
|
2011-03-28 16:38:05 -07:00
|
|
|
<a href="#" class="deleteRow">
|
2011-04-05 19:53:32 -07:00
|
|
|
<img src="../Content/Images/X.png" alt="Delete" /></a>
|
2011-03-08 23:40:48 -08:00
|
|
|
</div>
|
2011-03-28 16:38:05 -07:00
|
|
|
<div>
|
2011-04-09 19:44:01 -07:00
|
|
|
<%:Html.ValidationMessageFor(m => m.Path)%>
|
2011-03-28 16:38:05 -07:00
|
|
|
</div>
|
|
|
|
<div class="hiddenProfileDetails">
|
2011-04-09 19:44:01 -07:00
|
|
|
<%=Html.TextBoxFor(x => x.Id, new {@style = "display:none"})%>
|
2011-03-28 16:38:05 -07:00
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
2011-04-09 19:44:01 -07:00
|
|
|
<%
|
|
|
|
}%>
|