mirror of
https://github.com/Radarr/Radarr
synced 2025-12-17 22:06:17 +01:00
14 lines
341 B
Text
14 lines
341 B
Text
@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>
|
|
}
|