diff options
author | Magnus Hagander | 2019-02-10 19:29:55 +0000 |
---|---|---|
committer | Magnus Hagander | 2019-02-10 19:30:23 +0000 |
commit | a9ab5ddbf5881a148df559065483cbf18169b80e (patch) | |
tree | ced8759899a5855b26db91705a8044fbaf893a7b | |
parent | ba0a9041374d6abca6a6f4dbf8feb546946c0ced (diff) |
Change backgroud color of target version label
Per request
-rw-r--r-- | pgcommitfest/commitfest/templates/commitfest.html | 2 | ||||
-rw-r--r-- | pgcommitfest/commitfest/templates/patch.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pgcommitfest/commitfest/templates/commitfest.html b/pgcommitfest/commitfest/templates/commitfest.html index d8832a0..63f793a 100644 --- a/pgcommitfest/commitfest/templates/commitfest.html +++ b/pgcommitfest/commitfest/templates/commitfest.html @@ -85,7 +85,7 @@ <tr> <td><a href="{{p.id}}/">{{p.name}}</a></td> <td><span class="label label-{{p.status|patchstatuslabel}}">{{p.status|patchstatusstring}}</span></td> - <td>{%if p.targetversion%}<span class="label label-primary">{{p.targetversion}}</span>{%endif%}</td> + <td>{%if p.targetversion%}<span class="label label-default">{{p.targetversion}}</span>{%endif%}</td> <td>{{p.author_names|default:''}}</td> <td>{{p.reviewer_names|default:''}}</td> <td>{{p.committer|default:''}}</td> diff --git a/pgcommitfest/commitfest/templates/patch.html b/pgcommitfest/commitfest/templates/patch.html index d5c291e..3930879 100644 --- a/pgcommitfest/commitfest/templates/patch.html +++ b/pgcommitfest/commitfest/templates/patch.html @@ -33,7 +33,7 @@ </tr> <tr> <th>Target version</th> - <td>{%if patch.targetversion%}<span class="label label-primary">{{patch.targetversion}}</span>{%endif%}</td> + <td>{%if patch.targetversion%}<span class="label label-default">{{patch.targetversion}}</span>{%endif%}</td> </tr> <tr> <th>Authors</th> |