goCake/templates/rewards.html

26 lines
680 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">
<form enctype="multipart/form-data" action="/rewards" method="post">
<input type="file" name="csvFile" />
<input type="submit" value="upload" />
</form>
2020-11-08 16:00:33 +00:00
</div>
{{if .Uploaded}}
<!-- Uploaded but not successful -->
{{if ne .ErrorText ""}}
2020-11-08 16:00:33 +00:00
<div class="err">
2020-11-15 19:46:32 +00:00
<p>{{.ErrorText}}</p>
2020-11-08 16:00:33 +00:00
</div>
{{end}}
{{end}}
2020-11-08 16:00:33 +00:00
{{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" .}}