2016-09-07 18:07:37 +01:00
|
|
|
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
|
|
//
|
|
|
|
// This software (Documize Community Edition) is licensed under
|
|
|
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
//
|
|
|
|
// You can operate outside the AGPL restrictions by purchasing
|
|
|
|
// Documize Enterprise Edition and obtaining a commercial license
|
|
|
|
// by contacting <sales@documize.com>.
|
|
|
|
//
|
|
|
|
// https://documize.com
|
|
|
|
|
|
|
|
package trello
|
|
|
|
|
|
|
|
const membersTemplate = `
|
2016-09-08 15:07:21 +01:00
|
|
|
<h3>Member Stats</h3>
|
2016-09-08 20:17:44 +01:00
|
|
|
<p>
|
|
|
|
There are {{len .MemberBoardAssign}} members assigned to {{.CardAssignTotal}} cards of the total {{.CardTotal}} cards across {{len .Boards}} boards.
|
2016-09-08 15:28:25 +01:00
|
|
|
</p>
|
2016-09-08 15:07:21 +01:00
|
|
|
|
2016-09-09 16:47:47 +01:00
|
|
|
<div class="section-trello-render">
|
2016-09-08 15:07:21 +01:00
|
|
|
<table class="trello-table" class="width-100">
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
{{range $m := .MemberBoardAssign}}
|
|
|
|
<tr>
|
2016-09-09 16:47:47 +01:00
|
|
|
<td>
|
2016-09-08 15:07:21 +01:00
|
|
|
<img class="trello-avatar" src="https://trello-avatars.s3.amazonaws.com/{{$m.AvatarHash}}/50.png" height="50" alt="Member Avatar">
|
|
|
|
</td>
|
2016-09-09 16:47:47 +01:00
|
|
|
<td>
|
2016-09-08 15:07:21 +01:00
|
|
|
<h6>{{$m.MemberName}}</h6>
|
2016-09-09 16:47:47 +01:00
|
|
|
<p>
|
|
|
|
{{range $ac := $m.AssignCounts}}
|
|
|
|
{{$ac.BoardName}} ({{$ac.Count}}),
|
|
|
|
{{end}}
|
|
|
|
</p>
|
2016-09-08 15:07:21 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
2016-09-07 18:07:37 +01:00
|
|
|
`
|