mirror of
https://github.com/documize/community.git
synced 2025-07-23 07:09:43 +02:00
New github design changes
This commit is contained in:
parent
b42fc1f84d
commit
cf007f8006
4 changed files with 148 additions and 79 deletions
|
@ -13,14 +13,14 @@ package github
|
|||
|
||||
const (
|
||||
rawMSsvg = `<path d="M8 2H6V0h2v2zm4 5H2c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h10l2 2-2 2zM8 4H6v2h2V4zM6 16h2V8H6v8z"></path>`
|
||||
openMSsvg = `
|
||||
openMSsvg = `
|
||||
<span title="Open milestone">
|
||||
<svg height="16" width="14" version="1.1" viewBox="0 0 14 16">
|
||||
` + rawMSsvg + `
|
||||
</svg>
|
||||
</span>
|
||||
`
|
||||
closedMSsvg = `
|
||||
closedMSsvg = `
|
||||
<span title="Closed milestone">
|
||||
<svg height="8" width="7" version="1.1" viewBox="0 0 14 16">
|
||||
` + rawMSsvg + `
|
||||
|
@ -29,36 +29,50 @@ const (
|
|||
`
|
||||
milestonesTemplate = `
|
||||
<div class="section-github-render">
|
||||
<h3>Milestones: {{.ClosedMS}} closed, {{.OpenMS}} open</h3>
|
||||
<div class="github-board">
|
||||
<ul class="github-list">
|
||||
{{range $data := .Milestones}}
|
||||
<li class="github-commit-item">
|
||||
<a class="link" href="{{$data.URL}}">
|
||||
<div class="issue-avatar">
|
||||
|
||||
{{if .HasMilestones}}
|
||||
<h3>Milestones: {{.ClosedMS}} closed, {{.OpenMS}} open</h3>
|
||||
<div class="github-board">
|
||||
<table class="milestone-table" style="width: 100%;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="title">Repository</th>
|
||||
<th class="title">Milestone</th>
|
||||
<th class="title">Issue Progress</th>
|
||||
<th class="title">X</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
{{range $data := .Milestones}}
|
||||
<tr>
|
||||
<td style="width: 25%;">{{$data.Repo}} </td>
|
||||
<td style="width: 20%;">{{$data.Name}} <br>
|
||||
{{if $data.IsMilestone}}
|
||||
{{$data.DueDate}} Last updated {{$data.UpdatedAt}}.
|
||||
{{end}}
|
||||
</td>
|
||||
<td style="width: 45%;">
|
||||
{{if $data.IsMilestone}}
|
||||
<progress value="{{$data.Progress}}" max="100"></progress> <br>
|
||||
{{$data.CompleteMsg}} complete {{$data.OpenIssues}} open {{$data.ClosedIssues}} closed
|
||||
{{else}}
|
||||
{{$data.OpenIssues}} open {{$data.ClosedIssues}} closed
|
||||
{{end}}
|
||||
</td>
|
||||
<td style="width: 10%;">
|
||||
{{if $data.IsOpen}}
|
||||
` + openMSsvg + `
|
||||
{{else}}
|
||||
` + closedMSsvg + `
|
||||
{{end}}
|
||||
</div>
|
||||
<div class="github-commit-body">
|
||||
<div class="github-commit-title"><span class="label-name">{{$data.Repo}} - {{$data.Name}}</span>
|
||||
{{if $data.IsMilestone}}
|
||||
<progress value="{{$data.Progress}}" max="100">
|
||||
{{end}}
|
||||
</div>
|
||||
<div class="github-commit-meta">
|
||||
{{$data.DueDate}} Last updated {{$data.UpdatedAt}}.
|
||||
{{$data.CompleteMsg}} complete {{$data.OpenIssues}} open {{$data.ClosedIssues}} closed
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<div class="clearfix" />
|
||||
</li>
|
||||
{{end}}
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{{end}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
`
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue