activatecard.html.php 1017 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * The editcard view file of kanban module of ZenTaoPMS.
  4. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  5. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  6. * @author Yuting Wang <wangyuting@easycorp.ltd>
  7. * @package kanban
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader(set::title($lang->kanban->activateCard), set::entityText($card->name), set::entityID($card->id));
  12. formPanel
  13. (
  14. formRow
  15. (
  16. set::width('1/2'),
  17. formGroup
  18. (
  19. set::label($lang->kanbancard->progress),
  20. inputGroup
  21. (
  22. input(set::name('progress')),
  23. span(set('class', 'input-group-addon'), '%')
  24. )
  25. )
  26. ),
  27. formRow
  28. (
  29. formGroup
  30. (
  31. set::label($lang->comment),
  32. editor(set::name('comment'))
  33. )
  34. )
  35. );
  36. render();