assignto.html.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * The complete file of demand module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Yidong Wang <yidong@cnezsoft.com>
  8. * @package demand
  9. * @version $Id: complete.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.html.php';?>
  14. <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
  15. <div id='mainContent' class='main-content'>
  16. <div class='center-block'>
  17. <div class='main-header'>
  18. <h2>
  19. <span class='label label-id'><?php echo $demand->id;?></span>
  20. <?php echo $demand->title;?>
  21. </h2>
  22. </div>
  23. <form method='post' target='hiddenwin'>
  24. <table class='table table-form'>
  25. <tr>
  26. <th class='w-100px'><?php echo $lang->demand->assignedTo;?></th>
  27. <td class='w-p25-f'><?php echo html::select('assignedTo', $users, $demand->assignedTo, "class='form-control chosen'");?></td><td></td>
  28. </tr>
  29. <tr>
  30. <th><?php echo $lang->comment;?></th>
  31. <td colspan='2'><?php echo html::textarea('comment', '', "rows='6' class='form-control w-p98'");?></td>
  32. </tr>
  33. <tr>
  34. <td colspan='3' class='text-center form-actions'>
  35. <?php echo html::submitButton();?>
  36. </td>
  37. </tr>
  38. </table>
  39. </form>
  40. <hr class='small' />
  41. <?php include $app->getModuleRoot() . 'common/view/action.html.php';?>
  42. </div>
  43. </div>
  44. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>