minutes.html.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * The minutes of meeting module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2021 禅道软件(青岛)有限公司(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 Liyuchun <liyuchun@easycorp.ltd>
  8. * @package minutes
  9. * @version $Id: minutes.html.php 4903 2020-09-04 09:32:59Z lyc $
  10. * @link https://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='main-header'>
  17. <h2>
  18. <span class='prefix label-id'><strong><?php echo $meeting->id;?></strong></span>
  19. <?php echo "<span title='$meeting->name'>" . $meeting->name . '</span>';?>
  20. </h2>
  21. </div>
  22. <form class='load-indicator main-form' method='post' enctype='multipart/form-data' target='hiddenwin'>
  23. <table class='table table-form'>
  24. <tbody>
  25. <tr>
  26. <th><?php echo $lang->meeting->minutes;?></th>
  27. <td colspan='2'><?php echo html::textarea('minutes', $meeting->minutes, "rows='6' class='form-control'");?></td>
  28. </tr>
  29. <tr>
  30. <th><?php echo $lang->meeting->files;?></th>
  31. <td colspan='2'>
  32. <?php echo $this->fetch('file', 'printFiles', array('files' => $meeting->files, 'fieldset' => 'false', 'object' => $meeting, 'method' => 'edit'));?>
  33. <?php echo $this->fetch('file', 'buildoldform', 'fileCount=1&percent=0.85&filesName=minutesFiles&labelsName=minutesFiles');?>
  34. </td>
  35. </tr>
  36. <tr>
  37. <td class='text-center form-actions' colspan='3'><?php echo html::submitButton(); ?></td>
  38. </tr>
  39. </tbody>
  40. </table>
  41. </form>
  42. <div class="cell"><?php include $app->getModuleRoot() . 'common/view/action.html.php';?></div>
  43. </div>
  44. <?php include $app->getModuleRoot() . "common/view/footer.html.php";?>