close.html.php 1.2 KB

12345678910111213141516171819202122232425262728
  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 $demandpool->id;?></span>
  8. <span title='<?php echo $demandpool->name;?>'><?php echo $demandpool->name;?></span>
  9. </h2>
  10. </div>
  11. <form class="load-indicator main-form form-ajax" method='post' enctype='multipart/form-data' id='dataform'>
  12. <table class="table table-form">
  13. <tbody>
  14. <tr>
  15. <th><?php echo $lang->comment;?></th>
  16. <td colspan='3'><?php echo html::textarea('comment', '', "rows='6' class='form-control'");?></td>
  17. </tr>
  18. <tr>
  19. <td class='form-actions text-center' colspan='4'><?php echo html::submitButton($lang->demandpool->closeAB);?></td>
  20. </tr>
  21. </tbody>
  22. </table>
  23. </form>
  24. <hr/>
  25. <?php include $app->getModuleRoot() . 'common/view/action.html.php';?>
  26. </div>
  27. </div>
  28. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>