1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/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

15 lines
341 B
Plaintext

@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>
}