Changeset 348 for trunk/app/views/helps/newticket.ctp
- Timestamp:
- 03/26/08 12:17:56 (10 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/helps/newticket.ctp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/helps/newticket.ctp
r303 r348 1 1 <h1>Reporting bugs</h1> 2 3 <p>You can help the Karamelo developrment team by reporting bugs and making suggestions to improve this application. </p>4 5 6 7 2 <?php 8 9 echo $form->create('Help', array('a dmin_submit'));10 3 echo $html->para(null, 'You can help the Karamelo development team by reporting bugs and making suggestions to improve this application.'); 4 echo $form->create('Help', array('action'=>'submit')); 5 11 6 echo $form->label('Help.report', 'Description:') . '<br />'; 12 7 echo $form->textarea('Help.report', array('rows'=>8, 'cols'=>60)) . '<br />'; 13 8 14 9 echo $form->label('Help.kind', 'Kind:') . '<br />'; 15 10 echo $form->select('Help.kind', array('Enhancement'=>'Enhancement', 'Bug'=>'Bug', 'Suggestion'=>'Suggestion'), null, null, false) . '<br />'; 16 11 17 12 echo $form->end('Send'); 18 13 19 14 $html->link('Submit new ticket', 'http://trac.mononeurona.org/karamelo/newticket'); 20 15
