mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-31 20:26:16 +00:00
a3d4b7ed82
Font Awesomed AddSeries Font Awesomed gritter
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>
|
|
}
|