activate.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 $demand->id;?></span>
  8. <span title='<?php echo $demand->title;?>'><?php echo $demand->title;?></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 class='w-100px'><?php echo $lang->demand->assignedTo;?></th>
  16. <td class='w-p45'><?php echo html::select('assignedTo', $users, $demand->closedBy, 'class="form-control chosen"');?></td><td></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->demand->activate);?></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';?>