mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
more root dir UI cleanup
This commit is contained in:
parent
c65b0a68b0
commit
9deea44c87
11 changed files with 1181 additions and 285 deletions
14
NzbDrone.Web/Views/AddSeries/RootList.cshtml
Normal file
14
NzbDrone.Web/Views/AddSeries/RootList.cshtml
Normal file
|
@ -0,0 +1,14 @@
|
|||
@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>
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue