| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/SolidCP/Portal/DesktopModules/SolidCP/ |
Upload File : |
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SpaceQuotasControl.ascx.cs" Inherits="SolidCP.Portal.SpaceQuotasControl" %>
<%@ Register Src="UserControls/QuotaViewer.ascx" TagName="QuotaViewer" TagPrefix="uc1" %>
<asp:Repeater ID="dlGroups" runat="server" EnableViewState="false">
<ItemTemplate>
<div class="panel panel-info">
<div class="panel-heading">
<asp:Panel ID="GroupPanel" runat="server" visible='<%# IsGroupVisible((int)Eval("GroupID")) %>'>
<strong><%# GetSharedLocalizedString("ResourceGroup." + (string)Eval("GroupName")) %></strong>
</asp:Panel>
</div>
<div class="panel-body">
<asp:Repeater ID="dlQuotas" runat="server" DataSource='<%# GetGroupQuotas((int)Eval("GroupID")) %>' EnableViewState="false">
<ItemTemplate>
<div class="row">
<div class="col-xs-6 text-right">
<%# GetQuotaTitle((string)Eval("QuotaName"), (object)Eval("QuotaDescription"))%>:
</div>
<div class="col-xs-6">
<uc1:QuotaViewer ID="quota" runat="server" QuotaTypeId='<%# Eval("QuotaTypeId") %>' QuotaUsedValue='<%# Eval("QuotaUsedValue") %>' QuotaValue='<%# Eval("QuotaValue") %>' QuotaAvailable='<%# Eval("QuotaAvailable") %>'/>
</div>
</div>
</ItemTemplate>
</asp:Repeater>
</div>
</div>
</ItemTemplate>
</asp:Repeater>