mirror of https://github.com/lidarr/Lidarr
15 lines
341 B
Plaintext
15 lines
341 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">
|
|
<i class="icon-remove icon-large delete-root" data-path="@root"></i>
|
|
<span>@root</span>
|
|
</div>
|
|
}
|