mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 11:02:40 +01:00
15 lines
340 B
Plaintext
15 lines
340 B
Plaintext
@model IEnumerable<String>
|
|
@if (Model.Count() == 0)
|
|
{
|
|
<div class="actionButton delete">
|
|
<span>You have no root folders added.</span>
|
|
</div>
|
|
}
|
|
@foreach (var root in Model)
|
|
{
|
|
<div class="actionButton delete">
|
|
<img src="/Content/Images/x_16.png" alt="delete" id='@root'/>
|
|
<span>@root</span>
|
|
</div>
|
|
}
|