summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/patchwork/projects.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/templates/patchwork/projects.html b/templates/patchwork/projects.html
index aa6df82..ad98bc3 100644
--- a/templates/patchwork/projects.html
+++ b/templates/patchwork/projects.html
@@ -10,8 +10,13 @@
{% for p in projects %}
<dt>
<a href="{% url patchwork.views.patch.list project_id=p.linkname %}"
- >{{p.linkname}}</a></dt>
- <dd>{{p.name}}</dd>
+ >{{p.linkname}}</a>
+ </dt>
+ <dd>{{p.name}}
+{% if p.web_url %}
+ (<a href="{{p.web_url}}">website</a>)
+{% endif %}
+ </dd>
{% endfor %}
</dl>
{% else %}