forked from kevinowino869/mitrobill
Update hotspot.tpl
This commit is contained in:
parent
4889853e53
commit
b9c31a856e
@ -26,9 +26,9 @@
|
||||
</div>
|
||||
<div class="col-lg-1 col-xs-4">
|
||||
<select class="form-control" id="type1" name="type1">
|
||||
<option value="">Prepaid & Postpaid</option>
|
||||
<option value="yes" {if $type1 eq 'yes' }selected{/if}>Prepaid</option>
|
||||
<option value="no" {if $type1 eq 'no' }selected{/if}>Postpaid</option>
|
||||
<option value="">{Lang::T('Prepaid')} & {Lang::T('Postpaid')}</option>
|
||||
<option value="yes" {if $type1 eq 'yes' }selected{/if}>{Lang::T('Prepaid')}</option>
|
||||
<option value="no" {if $type1 eq 'no' }selected{/if}>{Lang::T('Postpaid')}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-lg-1 col-xs-4">
|
||||
@ -42,7 +42,7 @@
|
||||
</div>
|
||||
<div class="col-lg-1 col-xs-4">
|
||||
<select class="form-control" id="bandwidth" name="bandwidth">
|
||||
<option value="">{Lang::T('Bandwidth')}</option>
|
||||
<option value="">Bandwidth</option>
|
||||
{foreach $bws as $b}
|
||||
<option value="{$b['id']}" {if $bandwidth eq $b['id'] }selected{/if}>
|
||||
{$b['name_bw']}
|
||||
@ -88,8 +88,8 @@
|
||||
<div class="col-lg-1 col-xs-4">
|
||||
<select class="form-control" id="status" name="status">
|
||||
<option value="-">{Lang::T('Status')}</option>
|
||||
<option value="1" {if $status eq '1' }selected{/if}>Enabled</option>
|
||||
<option value="0" {if $status eq '0' }selected{/if}>Disable</option>
|
||||
<option value="1" {if $status eq '1' }selected{/if}>{Lang::T('Active')}</option>
|
||||
<option value="0" {if $status eq '0' }selected{/if}>{Lang::T('Not Active')}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-lg-1 col-xs-8">
|
||||
@ -118,7 +118,7 @@
|
||||
<tr>
|
||||
<th>{Lang::T('Name')}</th>
|
||||
<th>{Lang::T('Type')}</th>
|
||||
<th><a href="{$_url}bandwidth/list">{Lang::T('Bandwidth')}</a></th>
|
||||
<th><a href="{$_url}bandwidth/list">Bandwidth</a></th>
|
||||
<th>{Lang::T('Category')}</th>
|
||||
<th>{Lang::T('Price')}</th>
|
||||
<th>{Lang::T('Validity')}</th>
|
||||
@ -155,7 +155,7 @@
|
||||
</td>
|
||||
<td>{$ds['device']}</td>
|
||||
<td>{if $ds['plan_expired']}<a
|
||||
href="{$_url}services/edit/{$ds['plan_expired']}">Yes</a>{else}No
|
||||
href="{$_url}services/edit/{$ds['plan_expired']}">{Lang::T('Yes')}</a>{else}{Lang::T('No')}
|
||||
{/if}</td>
|
||||
<td>{if $ds['prepaid'] == no}{$ds['expired_date']}{/if}</td>
|
||||
<td>{$ds['id']}</td>
|
||||
|
Loading…
x
Reference in New Issue
Block a user