1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00

15 lines
341 B
Plaintext
Raw Normal View History

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