added plan type to front ui
This commit is contained in:
parent
f769e7b798
commit
b92efe3d30
@ -20,6 +20,14 @@
|
|||||||
<input type="radio" name="prepaid" onclick="postPaid()" value="no"> Postpaid
|
<input type="radio" name="prepaid" onclick="postPaid()" value="no"> Postpaid
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-2 control-label">{Lang::T('Plan Type')}</label>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<input type="radio" name="plan_type" value="Personal" checked> Personal
|
||||||
|
<input type="radio" name="plan_type" value="Business"> Business
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{if $_c['radius_enable']}
|
{if $_c['radius_enable']}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-md-2 control-label">Radius</label>
|
<label class="col-md-2 control-label">Radius</label>
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
<input type="radio" name="enabled" value="0" {if $d['enabled'] == 0}checked{/if}> Disable
|
<input type="radio" name="enabled" value="0" {if $d['enabled'] == 0}checked{/if}> Disable
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-md-2 control-label">{Lang::T('Type')}</label>
|
<label class="col-md-2 control-label">{Lang::T('Type')}</label>
|
||||||
<div class="col-md-10">
|
<div class="col-md-10">
|
||||||
@ -24,6 +26,19 @@
|
|||||||
{if $d['prepaid'] == no}checked{/if}> Postpaid
|
{if $d['prepaid'] == no}checked{/if}> Postpaid
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-2 control-label">{Lang::T('Plan Type')}</label>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<input type="radio" name="plan_type" value="Personal"
|
||||||
|
{if $d['plan_type'] == 'Personal'}checked{/if}>
|
||||||
|
Personal
|
||||||
|
<input type="radio" name="plan_type" value="Business"
|
||||||
|
{if $d['plan_type'] == 'Business'}checked{/if}> Business
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
{if $_c['radius_enable'] and $d['is_radius']}
|
{if $_c['radius_enable'] and $d['is_radius']}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-md-2 control-label">Radius</label>
|
<label class="col-md-2 control-label">Radius</label>
|
||||||
|
@ -53,7 +53,8 @@
|
|||||||
<tr {if $ds['enabled'] != 1}class="danger" title="disabled"
|
<tr {if $ds['enabled'] != 1}class="danger" title="disabled"
|
||||||
{elseif $ds['prepaid'] != 'yes'}class="warning" title="Postpaid" {/if}>
|
{elseif $ds['prepaid'] != 'yes'}class="warning" title="Postpaid" {/if}>
|
||||||
<td class="headcol">{$ds['name_plan']}</td>
|
<td class="headcol">{$ds['name_plan']}</td>
|
||||||
<td>{$ds['typebp']}</td>
|
<td>{$ds['plan_type']}</td>
|
||||||
|
<td>{$ds['typebp']}</td>
|
||||||
<td>{$ds['name_bw']}</td>
|
<td>{$ds['name_bw']}</td>
|
||||||
<td>{Lang::moneyFormat($ds['price'])}</td>
|
<td>{Lang::moneyFormat($ds['price'])}</td>
|
||||||
<td>{$ds['time_limit']} {$ds['time_unit']}</td>
|
<td>{$ds['time_limit']} {$ds['time_unit']}</td>
|
||||||
|
@ -20,6 +20,15 @@
|
|||||||
<input type="radio" name="prepaid" onclick="postPaid()" value="no"> Postpaid
|
<input type="radio" name="prepaid" onclick="postPaid()" value="no"> Postpaid
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-2 control-label">{Lang::T('Plan Type')}</label>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<input type="radio" name="plan_type" value="Personal" checked> Personal
|
||||||
|
<input type="radio" name="plan_type" value="Business"> Business
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{if $_c['radius_enable']}
|
{if $_c['radius_enable']}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-md-2 control-label">Radius</label>
|
<label class="col-md-2 control-label">Radius</label>
|
||||||
|
@ -22,6 +22,17 @@
|
|||||||
<input type="radio" name="prepaid" onclick="postPaid()" value="no" {if $d['prepaid'] == no}checked{/if}> Postpaid
|
<input type="radio" name="prepaid" onclick="postPaid()" value="no" {if $d['prepaid'] == no}checked{/if}> Postpaid
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-2 control-label">{Lang::T('Plan Type')}</label>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<input type="radio" name="plan_type" value="Personal"
|
||||||
|
{if $d['plan_type'] == 'Personal'}checked{/if}>
|
||||||
|
Personal
|
||||||
|
<input type="radio" name="plan_type" value="Business"
|
||||||
|
{if $d['plan_type'] == 'Business'}checked{/if}> Business
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{if $_c['radius_enable'] and $d['is_radius']}
|
{if $_c['radius_enable'] and $d['is_radius']}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-md-2 control-label">Radius</label>
|
<label class="col-md-2 control-label">Radius</label>
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{Lang::T('Plan Name')}</th>
|
<th>{Lang::T('Plan Name')}</th>
|
||||||
|
<th>{Lang::T('Plan Type')}</th>
|
||||||
<th>{Lang::T('Bandwidth Plans')}</th>
|
<th>{Lang::T('Bandwidth Plans')}</th>
|
||||||
<th>{Lang::T('Plan Price')}</th>
|
<th>{Lang::T('Plan Price')}</th>
|
||||||
<th>{Lang::T('Plan Validity')}</th>
|
<th>{Lang::T('Plan Validity')}</th>
|
||||||
@ -51,6 +52,7 @@
|
|||||||
<tr {if $ds['enabled'] != 1}class="danger" title="disabled"
|
<tr {if $ds['enabled'] != 1}class="danger" title="disabled"
|
||||||
{elseif $ds['prepaid'] != 'yes'}class="warning" title="Postpaid" {/if}>
|
{elseif $ds['prepaid'] != 'yes'}class="warning" title="Postpaid" {/if}>
|
||||||
<td>{$ds['name_plan']}</td>
|
<td>{$ds['name_plan']}</td>
|
||||||
|
<td>{$ds['plan_type']}</td>
|
||||||
<td>{$ds['name_bw']}</td>
|
<td>{$ds['name_bw']}</td>
|
||||||
<td>{Lang::moneyFormat($ds['price'])}</td>
|
<td>{Lang::moneyFormat($ds['price'])}</td>
|
||||||
<td>{$ds['validity']} {$ds['validity_unit']}</td>
|
<td>{$ds['validity']} {$ds['validity_unit']}</td>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user