1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-04 21:15:24 +02:00

rough-wip actions

This commit is contained in:
Elliott Stoneham 2016-09-08 15:08:20 +01:00
parent 86de669fed
commit 4ccf3ea939
3 changed files with 113 additions and 4 deletions

View file

@ -12,6 +12,19 @@
package trello
const boardsTemplate = `
All Boards<br>
<b>All Boards</b><br>
{{range $b := .Boards}}
<div>
<p>There are {{ len $b.Actions }} actions for board <a href="{{ $b.Board.URL }}">{{$b.Board.Name}}.</a></p>
<div>
{{range $act := $b.Actions}}
{{$act.Date}} {{$act.Type}} {{$act.MemberCreator.FullName}} <br>
{{end}}
</div>
</div>
{{end}}
<br>
`