resolveform.html.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * The resolve view of issue 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 Congzhi Chen <congzhi@cnezsoft.com>
  8. * @package issue
  9. * @version $Id$
  10. * @link http://www.zentao.net
  11. */
  12. ?>
  13. <tr>
  14. <th><?php echo $lang->issue->resolution;?></th>
  15. <td>
  16. <?php echo html::select('resolution', $lang->issue->resolveMethods, 'resolved', 'class="form-control chosen" onchange="getSolutions()"');?>
  17. </td>
  18. </tr>
  19. <tr>
  20. <th><?php echo $lang->issue->resolutionComment;?></th>
  21. <td colspan='3'><textarea name='resolutionComment' class='form-control' rows='5' id='resolutionComment'><?php echo $issue->resolutionComment;?></textarea></td>
  22. </tr>
  23. <tr>
  24. <th><?php echo $lang->issue->resolvedBy;?></th>
  25. <td>
  26. <?php echo html::select('resolvedBy', $users, $this->app->user->account, "class='form-control chosen'");?>
  27. </td>
  28. </tr>
  29. <tr>
  30. <th><?php echo $lang->issue->resolvedDate;?></th>
  31. <td>
  32. <div class='input-group has-icon-right'>
  33. <?php echo html::input('resolvedDate', date('Y-m-d'), "class='form-control form-date'");?>
  34. <label for="date" class="input-control-icon-right"><i class="icon icon-delay"></i></label>
  35. </div>
  36. </td>
  37. </tr>
  38. <tr>
  39. <td></td>
  40. <td>
  41. <div class='form-action'><?php echo html::submitButton();?></div>
  42. </td>
  43. </tr>