summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/project.html
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2012-10-26 12:51:42 +0000
committerJeremy Kerr <jk@ozlabs.org>2012-11-15 14:35:59 +0800
commitc30c03312041c24c39b6a986882aae6189096c2f (patch)
treea8259779a17e29bd3e132fb2f3b51aaa7dbcefc0 /templates/patchwork/project.html
parent2894c4aeec566cb678a331f44f3d981c09c7d90c (diff)
downloadpatchwork-c30c03312041c24c39b6a986882aae6189096c2f.tar.bz2
patchwork-c30c03312041c24c39b6a986882aae6189096c2f.tar.xz
Add URL and SCM data to projects
This allows us to display friendly links to the project website, web SCM UI and SCM URL. For example for the patchwork project these could be set to: web_url: http://jk.ozlabs.org/projects/patchwork/ scm_url: git://ozlabs.org/home/jk/git/patchwork webscm_url: http://git.ozlabs.org/?p=patchwork;a=tree Requires a DB schema upgrade Signed-off-by: Simo Sorce <idra@samba.org> Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'templates/patchwork/project.html')
-rw-r--r--templates/patchwork/project.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/patchwork/project.html b/templates/patchwork/project.html
index 2d63d1d..5b2cc13 100644
--- a/templates/patchwork/project.html
+++ b/templates/patchwork/project.html
@@ -28,6 +28,24 @@
<th>Patch count</th>
<td>{{n_patches}} (+ {{n_archived_patches}} archived)</td>
</tr>
+{% if project.web_url %}
+ <tr>
+ <th>Website</th>
+ <td><a href="{{project.web_url}}">{{project.web_url}}</a></td>
+ </tr>
+{% endif %}
+{% if project.webscm_url %}
+ <tr>
+ <th>Source Code Web Interface</th>
+ <td><a href="{{project.webscm_url}}">{{project.webscm_url}}</a></td>
+ </tr>
+{% endif %}
+{% if project.scm_url %}
+ <tr>
+ <th>Source Code Manager URL</th>
+ <td><a href="{{project.scm_url}}">{{project.scm_url}}</a></td>
+ </tr>
+{% endif %}
</table>
{% if settings.ENABLE_XMLRPC %}