diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2008-09-09 14:47:09 +1000 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2008-09-09 14:47:09 +1000 |
commit | ac24fc60bebb67c04c6a343084efeabb61b46613 (patch) | |
tree | 79aa69480f443edbb26182728a38505326f3a2f5 /templates | |
parent | c1b2c0e5787a1ba487cda222596b0ca7ae94f288 (diff) | |
download | patchwork-ac24fc60bebb67c04c6a343084efeabb61b46613.tar patchwork-ac24fc60bebb67c04c6a343084efeabb61b46613.tar.gz |
Add commit_ref field to patch page
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/patchwork/patch.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/patchwork/patch.html b/templates/patchwork/patch.html index 098ba24..7c249ec 100644 --- a/templates/patchwork/patch.html +++ b/templates/patchwork/patch.html @@ -57,6 +57,12 @@ function toggle_headers(link_id, headers_id) <th>State</td> <td>{{ patch.state.name }}{% if patch.archived %}, archived{% endif %}</td> </tr> +{% if patch.commit_ref %} + <tr> + <th>Commit</td> + <td>{{ patch.commit_ref }}</td> + </tr> +{% endif %} {% if patch.delegate %} <tr> <th>Delegated to:</td> |