summaryrefslogtreecommitdiff
path: root/components/actions_table.html
diff options
context:
space:
mode:
Diffstat (limited to 'components/actions_table.html')
-rw-r--r--components/actions_table.html16
1 files changed, 13 insertions, 3 deletions
diff --git a/components/actions_table.html b/components/actions_table.html
index 0e9ecc1..f0c6572 100644
--- a/components/actions_table.html
+++ b/components/actions_table.html
@@ -1,5 +1,5 @@
{{define "UserScore"}}
-<table>
+<table id="usertable">
<tr>
<th>ID</th>
<th>BurnTime</th>
@@ -11,9 +11,13 @@
<td>{{.Score}}</td>
</tr>
</table>
+<div class="actiontable">
+<p>ActionTypePlus</p>
<table>
<tr>
- <th>ActionTypePlus</th>
+ <th>Name</th>
+ <th>Magnitude</th>
+ <th>Repeatable</th>
</tr>
{{range $action := .Actions}}
{{if eq $action.Type "ActionTypePlus"}}
@@ -25,9 +29,14 @@
{{end}}
{{end}}
</table>
+</div>
+<div class="actiontable">
+<p>ActionTypeMinus</p>
<table>
<tr>
- <th>ActionTypeMinus</th>
+ <th>Name</th>
+ <th>Magnitude</th>
+ <th>Repeatable</th>
</tr>
{{range $action := .Actions}}
{{if eq $action.Type "ActionTypeMinus"}}
@@ -39,4 +48,5 @@
{{end}}
{{end}}
</table>
+</div>
{{end}}