mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-09-01 07:30:07 +02:00
Period in hotspot
This commit is contained in:
parent
b9e987570c
commit
629d9e8ed4
3 changed files with 9 additions and 9 deletions
|
@ -118,17 +118,15 @@
|
||||||
<label class="col-md-2 control-label">{Lang::T('Plan Validity')}</label>
|
<label class="col-md-2 control-label">{Lang::T('Plan Validity')}</label>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<input type="text" class="form-control" id="validity" name="validity">
|
<input type="text" class="form-control" id="validity" name="validity">
|
||||||
|
<p class="help-block">{Lang::T('1 Period = 1 Month, Expires the 20th of each month')}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<select class="form-control" id="validity_unit" name="validity_unit">
|
<select class="form-control" id="validity_unit" name="validity_unit">
|
||||||
<option value="Mins" {if $d['validity_unit'] eq 'Mins'} selected {/if}>{Lang::T('Mins')}
|
<option value="Mins">{Lang::T('Mins')}</option>
|
||||||
</option>
|
<option value="Hrs">{Lang::T('Hrs')}</option>
|
||||||
<option value="Hrs" {if $d['validity_unit'] eq 'Hrs'} selected {/if}>{Lang::T('Hrs')}
|
<option value="Days">{Lang::T('Days')}</option>
|
||||||
</option>
|
<option value="Months">{Lang::T('Months')}</option>
|
||||||
<option value="Days" {if $d['validity_unit'] eq 'Days'} selected {/if}>{Lang::T('Days')}
|
<option value="Period">{Lang::T('Period')}</option>
|
||||||
</option>
|
|
||||||
<option value="Months" {if $d['validity_unit'] eq 'Months'} selected {/if}>
|
|
||||||
{Lang::T('Months')}</option>
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -128,6 +128,7 @@
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<input type="text" class="form-control" id="validity" name="validity"
|
<input type="text" class="form-control" id="validity" name="validity"
|
||||||
value="{$d['validity']}">
|
value="{$d['validity']}">
|
||||||
|
<p class="help-block">{Lang::T('1 Period = 1 Month, Expires the 20th of each month')}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<select class="form-control" id="validity_unit" name="validity_unit">
|
<select class="form-control" id="validity_unit" name="validity_unit">
|
||||||
|
@ -139,6 +140,7 @@
|
||||||
</option>
|
</option>
|
||||||
<option value="Months" {if $d['validity_unit'] eq 'Months'} selected {/if}>
|
<option value="Months" {if $d['validity_unit'] eq 'Months'} selected {/if}>
|
||||||
{Lang::T('Months')}</option>
|
{Lang::T('Months')}</option>
|
||||||
|
<option value="Period" {if $d['validity_unit'] eq 'Period'} selected {/if}>{Lang::T('Period')}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<input type="text" class="form-control" id="validity" name="validity"
|
<input type="text" class="form-control" id="validity" name="validity"
|
||||||
value="{$d['validity']}">
|
value="{$d['validity']}">
|
||||||
<p class="help-block">{Lang::T('1 Period = 30 Month, Expires the 20th of each month')}</p>
|
<p class="help-block">{Lang::T('1 Period = 1 Month, Expires the 20th of each month')}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<select class="form-control" id="validity_unit" name="validity_unit">
|
<select class="form-control" id="validity_unit" name="validity_unit">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue