diff options
author | Grail Finder <wohilas@gmail.com> | 2024-04-01 17:04:28 +0400 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2024-04-01 17:04:28 +0400 |
commit | 878b071112d7484fd9b22d70ee06afe895de9018 (patch) | |
tree | 51536ea1e822c1e5331b0b520bb6b5095b01eb14 /components | |
parent | fe5d588e2b32db1d079bc81cdac0857e535c0222 (diff) |
Chore: style change
Diffstat (limited to 'components')
-rw-r--r-- | components/actions_table.html | 16 |
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}} |