mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
a3d4b7ed82
Font Awesomed AddSeries Font Awesomed gritter
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>
|
|
}
|