|
Revision 898, 0.8 kB
(checked in by aarkerio, 8 days ago)
|
|
Update wikis
|
| Line | |
|---|
| 1 | <h1><?php __('Reporting bugs'); ?></h1> |
|---|
| 2 | <?php |
|---|
| 3 | echo $html->para(null, |
|---|
| 4 | __('You can help the Karamelo development team by reporting bugs and making suggestions to improve this application', true)); |
|---|
| 5 | echo $form->create('Help', array('action'=>'submit')); |
|---|
| 6 | |
|---|
| 7 | echo $form->label('Help.report', __('Description', true)) . '<br />'; |
|---|
| 8 | echo $form->textarea('Help.report', array('rows'=>8, 'cols'=>60)) . '<br />'; |
|---|
| 9 | |
|---|
| 10 | echo $form->label('Help.kind', __('Kind', true)) . '<br />'; |
|---|
| 11 | echo $form->select('Help.kind', array('Enhancement'=>__('Enhancement', true), 'Bug'=>'Bug', 'Suggestion'=>__('Suggestion', true)), null, array(), false) . '<br /><br />'; |
|---|
| 12 | |
|---|
| 13 | echo $form->end(__('Send', true)) .'<br />'; |
|---|
| 14 | |
|---|
| 15 | echo $html->link('Submit new ticket', 'http://trac.mononeurona.org/karamelo/newticket'); |
|---|
| 16 | |
|---|
| 17 | ?> |
|---|