mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-04 18:24:32 +02:00
Add new status when edit customers
This commit is contained in:
parent
1bada918b9
commit
41161ebc7c
5 changed files with 14 additions and 13 deletions
|
@ -112,14 +112,10 @@
|
|||
<label class="col-md-3 control-label">{Lang::T('Status')}</label>
|
||||
<div class="col-md-9">
|
||||
<select class="form-control" id="status" name="status">
|
||||
<option value="Active" {if $d['status'] eq 'Active' }selected{/if}>{Lang::T('Active')}
|
||||
</option>
|
||||
<option value="Disabled" {if $d['status'] eq 'Disabled' }selected{/if}>
|
||||
{Lang::T('Disabled')}
|
||||
</option>
|
||||
<option value="Banned" {if $d['status'] eq 'Banned' }selected{/if}>
|
||||
{Lang::T('Banned')}
|
||||
{foreach $statuses as $status}
|
||||
<option value="{$status}" {if $d['status'] eq $status }selected{/if}>{Lang::T($status)}
|
||||
</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
<span class="help-block">
|
||||
{Lang::T('Banned')}: {Lang::T('Customer cannot login again')}.<br>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue