You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/NzbDrone.Web/Views/AddSeries/RootList.cshtml

17 lines
382 B

@model IEnumerable<String>
@if (!Model.Any())
{
<div class="actionButton delete">
<span>You have no root folders added.</span>
</div>
}
@foreach (var root in Model)
{
<div class="actionButton delete">
<div class="delete-root" data-path="@root">
<i class="icon-remove icon-large"></i>
</div>
<span>@root</span>
</div>
}