@using WebsitePanel.WebDav.Core.Client
@using WebsitePanel.WebDavPortal.Resources
@using WebsitePanel.WebDavPortal.UI.Routes
@model WebsitePanel.WebDavPortal.Models.ModelForWebDav
@using (Html.BeginRouteForm(FileSystemRouteNames.ShowContentPath))
{
@Html.TextBoxFor(x => x.SearchValue, new { @class = "form-control input-sm"})
}
@if (Model != null)
{
foreach (IHierarchyItem element in Model.Items)
{
@Html.Partial("_ResoursePartial", element)
}
}