diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/VERSION | 1 | ||||
-rw-r--r-- | templates/issue/list.tmpl | 7 |
2 files changed, 6 insertions, 2 deletions
diff --git a/templates/VERSION b/templates/VERSION new file mode 100644 index 00000000..c07dee82 --- /dev/null +++ b/templates/VERSION @@ -0,0 +1 @@ +0.3.6.0525 Alpha
\ No newline at end of file diff --git a/templates/issue/list.tmpl b/templates/issue/list.tmpl index aac27943..0fae3eb6 100644 --- a/templates/issue/list.tmpl +++ b/templates/issue/list.tmpl @@ -71,9 +71,12 @@ {{range .Issues}}{{if .Poster}} <div class="list-group-item issue-item{{if not .IsRead}} unread{{end}}" id="issue-{{.Id}}"> <span class="number pull-right">#{{.Index}}</span> - <h5 class="title"><a href="{{$.RepoLink}}/issues/{{.Index}}">{{.Name}}</a> + <h5 class="title"> + <a href="{{$.RepoLink}}/issues/{{.Index}}">{{.Name}}</a> <span class="labels"> - <span class="label" style="background-color: #28a1c5">tag</span> + {{range .Labels}} + <span class="label" style="background-color: {{.Color}}">{{.Name}}</span> + {{end}} </span> </h5> <p class="info"> |