diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-05-05 15:49:51 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-05-05 15:49:51 -0500 |
commit | c422010521a7c09673a8d4d0068d3fd482dd2dbc (patch) | |
tree | 036edda657fbfb10083532319ac898471c2ade59 /httemplate/edit/svc_acct | |
parent | c684757e24c7c64b73a6d636b2d25997b3511053 (diff) |
RT#34289: Flag service fields as mandatory
Diffstat (limited to 'httemplate/edit/svc_acct')
-rw-r--r-- | httemplate/edit/svc_acct/communigate.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/httemplate/edit/svc_acct/communigate.html b/httemplate/edit/svc_acct/communigate.html index 6370a54dc..370bfb0e7 100644 --- a/httemplate/edit/svc_acct/communigate.html +++ b/httemplate/edit/svc_acct/communigate.html @@ -47,8 +47,9 @@ <INPUT TYPE="hidden" NAME="quota" VALUE="<% $svc_acct->quota %>"> % } else { % my $quota_label = $communigate ? 'Mail storage limit' : 'Quota'; - <TR> - <TD ALIGN="right"><% $quota_label %></TD> +<% include('/elements/tr-td-label.html', + 'label' => $quota_label, + 'required' => $part_svc->part_svc_column('quota')->required ) %> <TD><INPUT TYPE="text" NAME="quota" VALUE="<% $svc_acct->quota %>"></TD> </TR> % } |