activate.html.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /**
  3. * The activate file of feedback module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Jia Fu <fujia@cnezsoft.com>
  8. * @package feedback
  9. * @version $Id: start.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $
  10. * @link http://www.zentao.net
  11. */
  12. ?>
  13. <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
  14. <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
  15. <?php include $app->getModuleRoot() . 'common/view/sortable.html.php';?>
  16. <div id='mainContent' class='main-content'>
  17. <div class='center-block'>
  18. <div class='main-header'>
  19. <h2>
  20. <span class='label label-id'><?php echo $feedback->id;?></span>
  21. <?php echo isonlybody() ? ("<span title='$feedback->title'>" . $feedback->title . '</span>') : html::a($this->createLink('feedback', 'view', 'feedbackID=' . $feedback->id), $feedback->title);?>
  22. <?php if(!isonlybody()):?>
  23. <small> <?php echo $lang->arrow . $lang->feedback->activate;?></small>
  24. <?php endif;?>
  25. </h2>
  26. </div>
  27. <form method='post' enctype='multipart/form-data' target='hiddenwin'>
  28. <table class='table table-form'>
  29. <tr>
  30. <th class='thWidth'><?php echo $lang->feedback->assignedTo;?></th>
  31. <td class='w-p35-f'>
  32. <div class="input-group">
  33. <?php echo html::select('assignedTo', $users, $assignedTo, "class='form-control chosen'");?>
  34. </div>
  35. </td>
  36. </tr>
  37. <tr>
  38. <th><?php echo $lang->comment?></th>
  39. <td colspan='3'><?php echo html::textarea('comment', '',"rows='5' class='w-p100'");?></td>
  40. </tr>
  41. <tr>
  42. <td colspan='3' class='text-center form-actions'>
  43. <?php echo html::submitButton($lang->feedback->activate);?>
  44. </td>
  45. </tr>
  46. </table>
  47. </form>
  48. <hr class='small' />
  49. <div class='main'><?php include $app->getModuleRoot() . 'common/view/action.html.php';?></div>
  50. </div>
  51. </div>
  52. <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>