mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
17 lines
382 B
Plaintext
17 lines
382 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">
|
|
<div class="delete-root" data-path="@root">
|
|
<i class="icon-remove icon-large"></i>
|
|
</div>
|
|
<span>@root</span>
|
|
</div>
|
|
}
|