diff options
Diffstat (limited to 'components/recommendation.html')
-rw-r--r-- | components/recommendation.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/components/recommendation.html b/components/recommendation.html new file mode 100644 index 0000000..5036088 --- /dev/null +++ b/components/recommendation.html @@ -0,0 +1,48 @@ +{{define "recommentdation"}} +<div class="actiontable"> +<p>ActionTypePlus</p> +<table> + <tr> + <th>Name</th> + <th>Magnitude</th> + <th>Repeatable</th> + <th>Commit</th> + </tr> + {{range $action := .Actions}} + {{if and (eq $action.Type "ActionTypePlus") (or (not $action.Done) ($action.Repeatable))}} + <form hx-post="/done" hx-target="#ancestor" hx-swap="outerHTML"> + <tr> + <td><input class="action_name" name="name" value={{$action.Name}} type="hidden" readonly />{{$action.Name}}</td> + <td>{{$action.Magnitude}}</td> + <td>{{$action.Repeatable}}</td> + <td><input type="submit" value="Done It"></input></td> + </tr> + </form> + {{end}} + {{end}} +</table> +</div> +<div class="actiontable"> +<p>ActionTypeMinus</p> +<table> + <tr> + <th>Name</th> + <th>Magnitude</th> + <th>Repeatable</th> + <th>Commit</th> + </tr> + {{range $action := .Actions}} + {{if eq $action.Type "ActionTypeMinus"}} + <form hx-post="/done" hx-target="#ancestor" hx-swap="outerHTML"> + <tr> + <td><input class="action_name" name="name" value={{$action.Name}} type="hidden" readonly />{{$action.Name}}</td> + <td>{{$action.Magnitude}}</td> + <td>{{$action.Repeatable}}</td> + <td><input type="submit" value="Done It"></input></td> + </tr> + </form> + {{end}} + {{end}} +</table> +</div> +{{end}} |