1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 09:21:43 +02:00
Radarr/NzbDrone.Web/Views/AddSeries/RootList.cshtml
kay.one 5e386a2bc7 Added jquery tab, accordion to autobind.
made add series page more awsome.
2011-12-07 21:30:47 -08:00

15 lines
339 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">
<img src="../../Content/Images/x_16.png" alt="delete" id='@root'/>
<span>@root</span>
</div>
}