From 6d04e9defc629cd50721cc9419da9e0730092f80 Mon Sep 17 00:00:00 2001 From: daitingting Date: Fri, 16 Jun 2023 05:31:38 +0000 Subject: [PATCH] * Refactor start view. --- module/testtask/ui/start.html.php | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 module/testtask/ui/start.html.php diff --git a/module/testtask/ui/start.html.php b/module/testtask/ui/start.html.php new file mode 100644 index 0000000000..270325a5f7 --- /dev/null +++ b/module/testtask/ui/start.html.php @@ -0,0 +1,39 @@ + + * @package testtask + * @link https://www.zentao.net + */ +namespace zin; + +set::title($testtask->name); + +form +( + formGroup + ( + set::label($lang->testtask->status), + set::name('status'), + set::value('doing'), + set::class('hidden'), + ), + formGroup + ( + set::label($lang->comment), + editor + ( + set::name('comment'), + set::rows(6) + ) + ), + set::actions(array('submit')), +); + +history(); + +render('modalDialog'); +