edit.html.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php include $app->getModuleRoot() . 'common/view/header.html.php'?>
  2. <div id="mainContent" class="main-content fade">
  3. <div class="center-block">
  4. <div class="main-header">
  5. <h2><?php echo $lang->reviewissue->edit;?></h2>
  6. </div>
  7. <form class="load-indicator main-form form-ajax" method="post" enctype="multipart/form-data" id="dataform">
  8. <table class="table table-form">
  9. <tbody>
  10. <tr>
  11. <th class="w-120px"><?php echo $lang->reviewissue->review;?></th>
  12. <td><?php echo zget($reviewList, $issue->review, '');?></td>
  13. <td></td>
  14. </tr>
  15. <tr>
  16. <th class="w-120px"><?php echo $lang->reviewissue->injection;?></th>
  17. <td><?php echo html::select('injection', $stages, $issue->injection, 'class="form-control chosen"');?></td>
  18. <td></td>
  19. </tr>
  20. <tr>
  21. <th class="w-120px"><?php echo $lang->reviewissue->title;?></th>
  22. <td><?php echo html::input('title', $issue->title, 'class="form-control"');?></td>
  23. <td></td>
  24. </tr>
  25. <tr>
  26. <th class="w-120px"><?php echo $lang->reviewissue->opinion;?></th>
  27. <td><?php echo html::input('opinion', $issue->opinion, 'class="form-control"');?></td>
  28. <td></td>
  29. </tr>
  30. <tr>
  31. <th class="w-120px"></th>
  32. <td colspan="2" class="form-actions">
  33. <?php echo html::submitButton($lang->save);?>
  34. <?php echo html::backButton();?>
  35. </td>
  36. </tr>
  37. </tbody>
  38. </table>
  39. </form>
  40. </div>
  41. </div>
  42. <?php include $app->getModuleRoot() . 'common/view/footer.html.php'?>