130a87aa9a
Minor updates for ADSL services Updates to Sort::MAsort() Move core OSB items under application/ Moved ACCOUNT functions under application Minor updates to task
37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
<!-- @todo NEEDS TO BE TRANSLATED -->
|
|
<table width="100%">
|
|
<tr>
|
|
<td class="head" colspan="2">Plugin Details</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width: 40%;">Service Number</td>
|
|
<td style="width: 60%;" class="data"><?php echo Form::input('plugin[service_number]',$so->service_number); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Service Address</td>
|
|
<td class="data"><?php echo Form::input('plugin[service_address]',$so->service_address); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Service Connect Date</td>
|
|
<td class="data">
|
|
<?php echo Form::input('plugin[service_connect_date]',$so->service_connect_date,array('id'=>'service_connect_date')); ?>
|
|
<?php echo HTML::anchor('#',
|
|
HTML::image($mediapath->uri(array('file'=>'img/calendar.png')),array('alt'=>_('Calendar'),'style'=>'cursor: pointer;')),
|
|
array('title'=>'Click to popup a dialog to select a date graphically','onclick'=>"dateSelector('service_connect_date')")); ?>
|
|
<script type="text/javascript">defaults['service_connect_date'] = '%s';</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Service Username</td>
|
|
<td class="data"><?php echo Form::input('plugin[service_username]',$so->service_username); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Service Password</td>
|
|
<td class="data"><?php echo Form::input('plugin[service_password]',$so->service_password); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Service IP Address</td>
|
|
<td class="data"><?php echo Form::input('plugin[ipaddress]',$so->ipaddress); ?></td>
|
|
</tr>
|
|
</table>
|