Newer
Older
gitbucket_jkp / src / main / twirl / issues / labellist.scala.html
@shimamoto shimamoto on 28 Sep 2014 273 bytes (refs #488) Fixed the screen layout.
@(issueLabels: List[model.Label])
@if(issueLabels.isEmpty){
  <li><span class="muted small">None yet</span></li>
}
@issueLabels.map { label =>
  <li><span class="issue-label" style="background-color: #@label.color; color: #@label.fontColor;">@label.labelName</span></li>
}