1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-01 04:25:55 +00:00
Lidarr/NzbDrone.Web/Views/AddSeries/RootList.cshtml
Mark McDowall a3d4b7ed82 Removed extraneous icons
Font Awesomed AddSeries
Font Awesomed gritter
2012-10-11 10:25:31 -07:00

14 lines
341 B
Text

@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">
<i class="icon-remove icon-large delete-root" data-path="@root"></i>
<span>@root</span>
</div>
}