ganttsetting.html.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * The performable file of kanban module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2022 禅道软件(青岛)有限公司(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 Yue Ma <mayue@easycorp.ltd>
  8. * @package kanban
  9. * @version $Id: performable.html.php 935 2022-01-1 14:20:24Z $
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  14. <style>
  15. .checkbox-primary{display: inline-block;width:100px;}
  16. </style>
  17. <div id='mainContent' class='main-content'>
  18. <div class='center-block'>
  19. <div class='main-header'>
  20. <h2><i class='icon icon-cog-outline'></i> <?php echo $lang->execution->ganttSetting;?></h2>
  21. </div>
  22. <form class='main-form form-ajax' method='post' enctype='multipart/form-data' id='dataform'>
  23. <table class='table table-form'>
  24. <tr>
  25. <th><?php echo $lang->execution->gantt->format;?></th>
  26. <td><?php echo html::radio('zooming', $lang->execution->gantt->zooming, $zooming ? $zooming : 'day');?></td>
  27. </tr>
  28. <tr>
  29. <th><?php echo $lang->customField;?></th>
  30. <td><?php echo html::checkbox('ganttFields', $customFields, $showFields);?></td>
  31. </tr>
  32. <tr>
  33. <td colspan='2' class='text-center form-actions'>
  34. <?php echo html::submitButton();?>
  35. </td>
  36. </tr>
  37. </table>
  38. </form>
  39. </div>
  40. </div>
  41. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>