mirror of
https://github.com/documize/community.git
synced 2025-07-25 16:19:46 +02:00
Removing unwanted data
This commit is contained in:
parent
eb902d8a52
commit
7bf9901c9a
4 changed files with 17 additions and 10 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
html, html a {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
|
||||||
|
}
|
||||||
|
|
||||||
.fixed-width-font {
|
.fixed-width-font {
|
||||||
font-family: 'courier new', courier;
|
font-family: 'courier new', courier;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<div class="color-error">You have no team boards to share - personal boards are never shown.</div>
|
<div class="color-error">You have no team boards to share - personal boards are never shown.</div>
|
||||||
</div>
|
</div>
|
||||||
{{else}}
|
{{else}}
|
||||||
|
<!--
|
||||||
<div class="pull-left width-45">
|
<div class="pull-left width-45">
|
||||||
<div class="input-form">
|
<div class="input-form">
|
||||||
<div class="heading">
|
<div class="heading">
|
||||||
|
@ -22,6 +22,7 @@
|
||||||
{{input id="trello-since" value=config.since type="text" }}<br>
|
{{input id="trello-since" value=config.since type="text" }}<br>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="input-control">
|
<div class="input-control">
|
||||||
<label>Select which boards you want to see</label>
|
<label>Select which boards you want to see</label>
|
||||||
<div class="tip">All boards are selectd by default</div>
|
<div class="tip">All boards are selectd by default</div>
|
||||||
|
@ -41,11 +42,12 @@
|
||||||
<div class="clearfix" />
|
<div class="clearfix" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="pull-left width-10"> </div>
|
<div class="pull-left width-10"> </div>
|
||||||
|
-->
|
||||||
<div class="pull-left width-45">
|
<div class="pull-left width-45">
|
||||||
<div class="input-form">
|
<div class="input-form">
|
||||||
<div class="input-control">
|
<div class="input-control">
|
||||||
|
|
|
@ -15,13 +15,13 @@ const renderTemplate = `
|
||||||
{{if eq .Since ""}}
|
{{if eq .Since ""}}
|
||||||
<p>Preparing...</p>
|
<p>Preparing...</p>
|
||||||
{{else}}
|
{{else}}
|
||||||
<p>Activity since {{.Since}} for boards:
|
<!-- <p>Activity since {{.Since}} for boards:
|
||||||
{{range $idx, $brd := .Boards}}{{if gt $idx 0}}, {{end}}<a class="link" href="{{$brd.Board.URL}}">{{$brd.Board.OrgName}}/{{$brd.Board.Name}}</a>{{end}}.</p>
|
{{range $idx, $brd := .Boards}}{{if gt $idx 0}}, {{end}}<a class="link" href="{{$brd.Board.URL}}">{{$brd.Board.OrgName}}/{{$brd.Board.Name}}</a>{{end}}.</p> -->
|
||||||
{{end}}` +
|
{{end}}` +
|
||||||
labelsTemplate +
|
//labelsTemplate +
|
||||||
boardsTemplate +
|
//boardsTemplate +
|
||||||
graphsTemplate +
|
//graphsTemplate +
|
||||||
membersTemplate +
|
//membersTemplate +
|
||||||
archiveTemplate +
|
//archiveTemplate +
|
||||||
tradTemplate +
|
tradTemplate +
|
||||||
``
|
``
|
||||||
|
|
|
@ -351,7 +351,7 @@ func getBoards(config *trelloConfig) (boards []trelloBoard, err error) {
|
||||||
goto foundID
|
goto foundID
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
boards[bx].Included = true // include boards by default
|
boards[bx].Included = false // don't include boards by default
|
||||||
foundID:
|
foundID:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue