2
0
visuddhinanda 4 жил өмнө
parent
commit
deb099264f

+ 3 - 0
api/templates/comments/comments_new.html

@@ -0,0 +1,3 @@
+<form>
+    <label lang='comm' text='name'>新建评论</label><input type="input" name="name" />
+</form>

+ 5 - 0
api/templates/comments/edit.html

@@ -0,0 +1,5 @@
+<form>
+    <input type="hidden" name="id" value="{{ .id }}" />
+    <input type="input" name="name" value="{{ .name }}"/>
+    <input type="input" name="description" value="{{ .description }}"/>
+</form>

+ 5 - 0
api/templates/groups/edit.html

@@ -0,0 +1,5 @@
+<form>
+    <input type="hidden" name="id" value="{{ .id }}" />
+    <input type="input" name="name" value="{{ .name }}"/>
+    <input type="input" name="description" value="{{ .description }}"/>
+</form>

+ 3 - 0
api/templates/groups/new.html

@@ -0,0 +1,3 @@
+<form>
+    <label lang='comm' text='name'>工作组名称</label><input type="input" name="name" />
+</form>