goCake/templates/rewards.html

28 lines
709 B
HTML
Raw Normal View History

2020-11-08 16:00:33 +00:00
{{template "header" .}}
<div class="mainbody">
{{if not .Success}}
<!-- not successful -->
<p>If you upload your CSV file from Cake here, we will display some graphs here</p>
<div class="indent">
<p>
<form enctype="multipart/form-data" action="/rewards" method="post">
<input type="file" name="csvFile" />
<input type="submit" value="upload" />
</form>
</p>
</div>
{{if .Uploaded}}
<!-- Uploaded but not successful -->
<div class="err">
2020-11-15 19:46:32 +00:00
{{if ne .ErrorText ""}}
<p>{{.ErrorText}}</p>
{{end}}
2020-11-08 16:00:33 +00:00
</div>
{{end}}
{{else}}
<!-- successful -->
{{template "barGraph" .}}
2020-11-15 19:46:32 +00:00
<!-- {{template "table" .}} -->
2020-11-08 16:00:33 +00:00
{{end}}
</div>
{{template "footer" .}}