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.
|
|
|
@using NzbDrone.Core
|
|
|
|
@model Dictionary<string, ulong>
|
|
|
|
@{
|
|
|
|
Layout = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@{
|
|
|
|
var rootDirString = "";
|
|
|
|
|
|
|
|
foreach(var rootDir in Model)
|
|
|
|
{
|
|
|
|
<div class="free-space" title="@rootDir.Key">
|
|
|
|
@rootDir.Value.ToBestFileSize(1) <span>Free</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
rootDirString += String.Format("{0} - {1} Free\r\n", rootDir.Key, rootDir.Value.ToBestFileSize(1));
|
|
|
|
}
|
|
|
|
|
|
|
|
<div id="free-space-small" title="@Html.Encode(rootDirString)">
|
|
|
|
<i class="icon-hdd"></i>
|
|
|
|
</div>
|
|
|
|
}
|