Files
Mozilla/mozilla/webtools/remora/app/views/addons/add_step3.thtml
fligtar%gmail.com b6f4031c64 Updated addon MCV
git-svn-id: svn://10.0.0.236/trunk@208694 18797224-902f-48f8-a5cc-f745e15eee43
2006-08-29 04:33:16 +00:00

31 lines
1.3 KiB
Plaintext

<?php
echo '<h1>'.(($newAddon === true) ? _('Submit New Add-on') : sprintf(_('Update %s'), $existing['Addon']['name'])).'</h1>';
echo '<h2>'._('Step 3 :: Version Information').'</h2>';
echo $html->formTag('/addons/add/'.$id);
echo $html->hidden('Addon/add_step3');
echo '<table>';
echo '<tr>';
echo '<td>'._('Version').'</td>';
echo '<td>'.$info['version'].'</td>';
echo '</tr>';
echo '<tr>';
echo '<td>'._('Platforms').'</td>';
echo '<td>'.$html->selectTag('Addon/Platform', $platforms, array('1' => true), array('multiple' => true, 'size' => '3'), null, false).$html->tagErrorMsg('Addon/Platform', _('Please select the platforms your add-on suports.')).'</td>';
echo '</tr>';
echo '<tr>';
echo '<td colspan=2>'._('Target Application(s)').'</td>';
echo '</tr>';
echo '<tr>';
echo '<td>'._('Version Notes').'</td>';
echo '<td>'.$html->textarea('Version/Releasenotes', array('rows' => 3, 'cols' => 55)).'</td>';
echo '</tr>';
echo '<tr>';
echo '<td>'._('Notes to Reviewer').'</td>';
echo '<td>'.$html->textarea('Version/Approvalnotes', array('rows' => 3, 'cols' => 55)).'</td>';
echo '</tr>';
echo '<tr>';
echo '<td colspan=2>'.$html->submit(_('Next').' &raquo;').'</td>';
echo '</tr>';
echo '</table>';
?>