1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Web/Views/AddSeries/RootList.cshtml

17 lines
382 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">
2012-10-29 18:30:37 +03:00
<div class="delete-root" data-path="@root">
<i class="icon-remove icon-large"></i>
</div>
2011-07-01 10:23:07 +03:00
<span>@root</span>
</div>
}