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');
+