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

15 lines
341 B
Plaintext
Raw Normal View History

2011-07-01 10:23:07 +03:00
@model IEnumerable<String>
@if (!Model.Any())
2011-07-01 10:23:07 +03:00
{
<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>
2011-07-01 10:23:07 +03:00
<span>@root</span>
</div>
}