diff options
Diffstat (limited to 'h-source/Application/Views/Search/form.php')
-rw-r--r-- | h-source/Application/Views/Search/form.php | 33 |
1 files changed, 25 insertions, 8 deletions
diff --git a/h-source/Application/Views/Search/form.php b/h-source/Application/Views/Search/form.php index 1615edb..9303b81 100644 --- a/h-source/Application/Views/Search/form.php +++ b/h-source/Application/Views/Search/form.php @@ -49,26 +49,43 @@ </div> <div class="notebook_view_title"> - Search one device in the archive: + <?php echo gtext("Search one device in the archive");?>: </div> <div class="search_form"> - - + <div class="search_form_label"> + <?php echo gtext("search by");?> <b><?php echo gtext("model name");?></b> + </div> + <noscript> + <div class="noscript_notice"> + you need javascript enabled in order to use the form below + </div> + </noscript> <form method="GET"> <table> <tr> - <td>hardware type:</td> + <td><?php echo gtext("hardware type");?>:</td> <td><?php echo Html_Form::select('type','',MyStrings::getTypes(),"select_entry","search_type_input");?></td> </tr> <tr> - <td>the model name contains:</td> + <td><?php echo gtext("the model name contains");?>:</td> <td><?php echo Html_Form::input('model','','input_entry_search',"search_model_input");?></td> </tr> </table> </form> - - </div> - + + <div class="search_form_2"> + <div class="search_form_label"> + <?php echo gtext("search by");?> <b>vendorid:productid</b> + </div> + <form method="GET"> + <table> + <tr> + <td><?php echo gtext("VendorID:ProductID code of the device");?>:</td> + <td><?php echo Html_Form::input('vendorid','','input_entry_search',"search_model_input");?></td> + </tr> + </table> + </form> + </div> </div> |