GUI Fixes

This commit is contained in:
vfedosevich 2014-09-26 11:08:00 +03:00
parent 715b2c79b6
commit d2707aa974
3 changed files with 1 additions and 3 deletions

View file

@ -120,7 +120,6 @@
<asp:Repeater ID="dlServiceLevelQuotas" runat="server" EnableViewState="false"> <asp:Repeater ID="dlServiceLevelQuotas" runat="server" EnableViewState="false">
<ItemTemplate> <ItemTemplate>
<br />
<div> <div>
<asp:Localize ID="locServiceLevelQuota" runat="server" Text='<%# Eval("QuotaDescription") %>'></asp:Localize> <asp:Localize ID="locServiceLevelQuota" runat="server" Text='<%# Eval("QuotaDescription") %>'></asp:Localize>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;

View file

@ -116,7 +116,6 @@
</div> </div>
<asp:Repeater ID="dlServiceLevelQuotas" runat="server" EnableViewState="false"> <asp:Repeater ID="dlServiceLevelQuotas" runat="server" EnableViewState="false">
<ItemTemplate> <ItemTemplate>
<br />
<div> <div>
<asp:Localize ID="locServiceLevelQuota" runat="server" Text='<%# Eval("QuotaDescription") %>'></asp:Localize> <asp:Localize ID="locServiceLevelQuota" runat="server" Text='<%# Eval("QuotaDescription") %>'></asp:Localize>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;

View file

@ -190,7 +190,7 @@ namespace WebsitePanel.Portal
col1.Attributes["nowrap"] = "nowrap"; col1.Attributes["nowrap"] = "nowrap";
Label lbl = new Label(); Label lbl = new Label();
lbl.ID = "lbl_" + quota.QuotaName.Replace(Quotas.SERVICE_LEVELS, "").Replace(" ", string.Empty).Trim(); lbl.ID = "lbl_" + quota.QuotaName.Replace(Quotas.SERVICE_LEVELS, "").Replace(" ", string.Empty).Trim();
lbl.Text = quota.QuotaDescription; lbl.Text = quota.QuotaDescription + ":";
col1.Controls.Add(lbl); col1.Controls.Add(lbl);