more root dir UI cleanup

This commit is contained in:
kay.one 2011-07-01 00:23:07 -07:00
commit 9deea44c87
11 changed files with 1181 additions and 285 deletions

View 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>
}