close.html.php 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  2. <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
  3. <div id="mainContent" class="main-content fade">
  4. <div class="center-block">
  5. <div class="main-header">
  6. <h2>
  7. <span class='label label-id'><?php echo $roadmap->id;?></span>
  8. <span title='<?php echo $roadmap->name;?>'><?php echo $roadmap->name;?></span>
  9. </h2>
  10. </div>
  11. <form class="load-indicator main-form" method='post' target='hiddenwin' enctype='multipart/form-data' id='dataform'>
  12. <table class="table table-form">
  13. <tbody>
  14. <tr>
  15. <th class='thWidth'><?php echo $lang->story->closedReason;?></th>
  16. <td class='w-p25-f'><?php echo html::select('closedReason', $this->lang->roadmap->reasonList, '', 'class="form-control"');?></td>
  17. </tr>
  18. <tr>
  19. <th><?php echo $lang->comment;?></th>
  20. <td colspan='3'><?php echo html::textarea('comment', '', "rows='6' class='form-control'");?></td>
  21. </tr>
  22. <tr>
  23. <td class='form-actions text-center' colspan='4'><?php echo html::submitButton($lang->roadmap->close);?></td>
  24. </tr>
  25. </tbody>
  26. </table>
  27. </form>
  28. <hr/>
  29. <?php include $app->getModuleRoot() . 'common/view/action.html.php';?>
  30. </div>
  31. </div>
  32. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>