diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-04-08 06:00:52 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-04-08 06:00:52 +0000 |
commit | efe7068c82e2ab60b3735645a65730b25070f23a (patch) | |
tree | 430f1b43c1ddefa772985999593e3f30d1ed230d /h-source/Application/Views | |
parent | 5a90d52724c9afa5499a27b65a05033ae6b924b8 (diff) |
h-source: added the driver entry for wifi and videocards
Diffstat (limited to 'h-source/Application/Views')
-rw-r--r-- | h-source/Application/Views/Videocards/form.php | 5 | ||||
-rw-r--r-- | h-source/Application/Views/Videocards/page.php | 5 | ||||
-rw-r--r-- | h-source/Application/Views/Wifi/form.php | 5 | ||||
-rw-r--r-- | h-source/Application/Views/Wifi/page.php | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/h-source/Application/Views/Videocards/form.php b/h-source/Application/Views/Videocards/form.php index 6faab56..5913882 100644 --- a/h-source/Application/Views/Videocards/form.php +++ b/h-source/Application/Views/Videocards/form.php @@ -75,6 +75,11 @@ <div class="entry_label"><?php echo gtext("how does it work with free software?");?></div> <?php echo Html_Form::select('video_card_works',$values['video_card_works'],Videocard::$videoSelect,"select_entry hidden_x_explorer");?> </div> + + <div class="form_entry"> + <div class="entry_label hidden_x_explorer"><?php echo gtext("free driver used");?> (<?php echo gtext("see the help page or leave blank if you are not sure");?>):</div> + <?php echo Html_Form::input('driver',$values['driver'],'input_entry');?> + </div> <div class="form_entry"> <div class="entry_label"><?php echo gtext("Description: (write here all the useful information)");?><br /><a href="<?php echo $this->baseUrl."/help/index/$lang#wiki-syntax";?>"><?php echo gtext("discover all the wiki tags");?></a></div> diff --git a/h-source/Application/Views/Videocards/page.php b/h-source/Application/Views/Videocards/page.php index a9a9b3d..5dd3db4 100644 --- a/h-source/Application/Views/Videocards/page.php +++ b/h-source/Application/Views/Videocards/page.php @@ -77,6 +77,11 @@ <div class="inner_label"><?php echo gtext("how does it work with free software?");?></div> <div class="inner_value"><b><?php echo Videocard::$videoReverse[$item[$tableName]['video_card_works']];?></b></div> </div> + + <div class="notebook_kernel"> + <div class="inner_label"><?php echo gtext("free driver used");?>:</div> + <div class="inner_value"><b><?php echo $item[$tableName]['driver'];?></b></div> + </div> <div class="notebook_description"> <div class="notebook_description_label"><?php echo gtext("Description");?>:</div> diff --git a/h-source/Application/Views/Wifi/form.php b/h-source/Application/Views/Wifi/form.php index 016f90a..1f31e88 100644 --- a/h-source/Application/Views/Wifi/form.php +++ b/h-source/Application/Views/Wifi/form.php @@ -75,6 +75,11 @@ <div class="entry_label hidden_x_explorer"><?php echo gtext("does it work with free software?");?></div> <?php echo Html_Form::select('wifi_works',$values['wifi_works'],Wifi::$wifiSelect,"select_entry hidden_x_explorer");?> </div> + + <div class="form_entry"> + <div class="entry_label hidden_x_explorer"><?php echo gtext("free driver used");?> (<?php echo gtext("see the help page or leave blank if you are not sure");?>):</div> + <?php echo Html_Form::input('driver',$values['driver'],'input_entry');?> + </div> <div class="form_entry"> <div class="entry_label"><?php echo gtext("Description: (write here all the useful information)");?><br /><a href="<?php echo $this->baseUrl."/help/index/$lang#wiki-syntax";?>"><?php echo gtext("discover all the wiki tags");?></a></div> diff --git a/h-source/Application/Views/Wifi/page.php b/h-source/Application/Views/Wifi/page.php index 6bf9e8f..2e040a6 100644 --- a/h-source/Application/Views/Wifi/page.php +++ b/h-source/Application/Views/Wifi/page.php @@ -77,6 +77,11 @@ <div class="inner_label"><?php echo gtext("does it work with free software?");?></div> <div class="inner_value"><b><?php echo $item[$tableName]['wifi_works'];?></b></div> </div> + + <div class="notebook_kernel"> + <div class="inner_label"><?php echo gtext("free driver used");?>:</div> + <div class="inner_value"><b><?php echo $item[$tableName]['driver'];?></b></div> + </div> <div class="notebook_description"> <div class="notebook_description_label"><?php echo gtext("Description");?>:</div> |