notify.html.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * The notify file of release module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 Guangming Sun<sunguangming@cnezsoft.com>
  8. * @package bug
  9. * @version $Id: notify.html.php 4129 2021-12-01 01:58:14Z wwccss $
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include '../../common/view/header.html.php';?>
  14. <style>.checkbox-primary {display: inline-block; margin-left: 10px;}</style>
  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 $release->id;?></span>
  20. <?php echo $release->name . ' - ' . $lang->release->notify;?>
  21. </h2>
  22. </div>
  23. <form method='post' enctype='multipart/form-data' class='form-ajax'>
  24. <table class='table table-form'>
  25. <tr>
  26. <th><?php echo $lang->release->notifyUsers;?></th>
  27. <td><?php echo html::checkbox('notify', $notifyList, 'FB');?></td>
  28. </tr>
  29. <?php echo html::hidden('releaseID', $release->id);?>
  30. <tr>
  31. <td class='form-actions text-center' colspan='2'><?php echo html::submitButton($lang->release->notify);?></td>
  32. </tr>
  33. </table>
  34. </form>
  35. <hr class='small' />
  36. <div class='main'><?php include '../../common/view/action.html.php';?></div>
  37. </div>
  38. </div>
  39. <?php include '../../common/view/footer.html.php';?>