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:
parent
86de669fed
commit
4ccf3ea939
3 changed files with 113 additions and 4 deletions
|
@ -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>
|
||||
`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue