1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Web/Views/AddSeries/RootList.cshtml

15 lines
339 B
Plaintext
Raw Normal View History

2011-07-01 10:23:07 +03:00
@model IEnumerable<String>
@if (!Model.Any())
2011-07-01 10:23:07 +03:00
{
<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'/>
2011-07-01 10:23:07 +03:00
<span>@root</span>
</div>
}