diff options
| author | Antonio Gallo <tonicucoz@gmail.com> | 2012-09-09 14:08:19 +0000 | 
|---|---|---|
| committer | Antonio Gallo <tonicucoz@gmail.com> | 2012-09-09 14:08:19 +0000 | 
| commit | 93f681d5bd99d28acdb1e4c6eb3e5bbc4a6842bf (patch) | |
| tree | 16fa123a4141006cd2413326d34ca17df310d983 /h-source/Application/Views | |
| parent | 090c0fa2d0a40176e4c1e77f5892e734a1fa7feb (diff) | |
added the entry: 'does the device prevent the installation of wifi cards not-approved by the vendor?' - part 1
Diffstat (limited to 'h-source/Application/Views')
| -rw-r--r-- | h-source/Application/Views/Desktop/Notebooks/form.php | 5 | ||||
| -rw-r--r-- | h-source/Application/Views/Desktop/Notebooks/page.php | 5 | ||||
| -rw-r--r-- | h-source/Application/Views/Mobile/Notebooks/page.php | 5 | 
3 files changed, 15 insertions, 0 deletions
diff --git a/h-source/Application/Views/Desktop/Notebooks/form.php b/h-source/Application/Views/Desktop/Notebooks/form.php index cc74eb1..aeeff26 100644 --- a/h-source/Application/Views/Desktop/Notebooks/form.php +++ b/h-source/Application/Views/Desktop/Notebooks/form.php @@ -71,6 +71,11 @@  				</div>  				<div class="form_entry"> +					<div class="entry_label"><?php echo gtext("does the device prevent the installation of wifi cards not-approved by the vendor?");?></div> +					<?php echo Html_Form::select('prevent_wifi',$values['prevent_wifi'],Notebooks::$preventWifiSelect,"select_entry");?> +				</div> +				 +				<div class="form_entry">  					<div class="entry_label"><?php echo gtext("year of commercialization");?>:</div>  					<?php echo Html_Form::select('comm_year',$values['comm_year'],Hardware::getCommYears(),"select_entry");?>  				</div> diff --git a/h-source/Application/Views/Desktop/Notebooks/page.php b/h-source/Application/Views/Desktop/Notebooks/page.php index 5ba76fa..ae3ec0e 100644 --- a/h-source/Application/Views/Desktop/Notebooks/page.php +++ b/h-source/Application/Views/Desktop/Notebooks/page.php @@ -70,6 +70,11 @@  				</div>  				<div class="notebook_vendor"> +					<div class="inner_label"><?php echo gtext("does the device prevent the installation of wifi cards not-approved by the vendor?");?></div> +					<div class="inner_value"><b><?php echo translate_and_gtext($item[$tableName]['prevent_wifi']);?></b> <?php if (strcmp($item[$tableName]['prevent_wifi'],'yes') === 0) echo "<span class='no_bold'>(".gtext("see the details inside the description entry").")</span>";?></div> +				</div> +				 +				<div class="notebook_vendor">  					<div class="inner_label"><?php echo gtext("year of commercialization");?>:</div>  					<div class="inner_value"><b><?php echo gtext($item[$tableName]['comm_year']);?></b></div>  				</div> diff --git a/h-source/Application/Views/Mobile/Notebooks/page.php b/h-source/Application/Views/Mobile/Notebooks/page.php index ddcba36..f174a54 100644 --- a/h-source/Application/Views/Mobile/Notebooks/page.php +++ b/h-source/Application/Views/Mobile/Notebooks/page.php @@ -69,6 +69,11 @@  				</div>  				<div class="ui-grid-a main_content_element"> +					<div class="ui-block-a"><?php echo gtext("does the device prevent the installation of wifi cards not-approved by the vendor?");?></div> +					<div class="ui-block-b"><b><?php echo translate_and_gtext($item[$tableName]['prevent_wifi']);?></b> <?php if (strcmp($item[$tableName]['prevent_wifi'],'yes') === 0) echo "<span class='no_bold'>(".gtext("see the details inside the description entry").")</span>";?></div> +				</div> +				 +				<div class="ui-grid-a main_content_element">  					<div class="ui-block-a"><?php echo gtext("year of commercialization");?>:</div>  					<div class="ui-block-b"><b><?php echo gtext($item[$tableName]['comm_year']);?></b></div>  				</div>  | 
