1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-28 10:37:41 +00:00
Lidarr/NzbDrone.Web/Views/AddSeries/RootList.cshtml

14 lines
345 B
Text

@model IEnumerable<String>
@if (Model.Count() == 0)
{
<div class="actionButton delete">
<span>You have no root folders added.</span>
</div>
}
@foreach (var root in Model)
{
<div class="actionButton delete">
<img src="../../Content/Images/x_16.png" alt="delete" id='@root'/>
<span>@root</span>
</div>
}