Add service levels quota view to space stats & org stats pages. Change quota type.
Expand collapsible panel when user have level id on user settings page.
This commit is contained in:
parent
243c065ebb
commit
b5444f10ec
10 changed files with 334 additions and 60 deletions
|
@ -365,6 +365,7 @@ namespace WebsitePanel.EnterpriseServer
|
|||
quota.QuotaId = (int)dr["QuotaId"];
|
||||
quota.GroupId = (int)dr["GroupId"];
|
||||
quota.QuotaName = (string)dr["QuotaName"];
|
||||
quota.QuotaDescription = ((object)dr["QuotaDescription"]).GetType() == typeof(System.DBNull) ? string.Empty : (string)dr["QuotaDescription"];
|
||||
quota.QuotaTypeId = (int)dr["QuotaTypeId"];
|
||||
quota.QuotaAllocatedValue = (int)dr["QuotaValue"];
|
||||
quota.QuotaUsedValue = (int)dr["QuotaUsedValue"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue