You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
341 B
15 lines
341 B
@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>
|
|
}
|