summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/patch.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/patchwork/patch.html')
-rw-r--r--templates/patchwork/patch.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/patchwork/patch.html b/templates/patchwork/patch.html
index c04e32b..be831e9 100644
--- a/templates/patchwork/patch.html
+++ b/templates/patchwork/patch.html
@@ -30,7 +30,7 @@ function toggle_headers(link_id, headers_id)
<table class="patchmeta">
<tr>
<th>Submitter</th>
- <td>{{ patch.submitter|personify }}</td>
+ <td>{{ patch.submitter|personify:project }}</td>
</tr>
<tr>
<th>Date</th>
@@ -179,7 +179,7 @@ function toggle_headers(link_id, headers_id)
<h2>Comments</h2>
{% for comment in patch.comments %}
<div class="comment">
-<div class="meta">{{ comment.submitter|personify }} - {{comment.date}}</div>
+<div class="meta">{{ comment.submitter|personify:project }} - {{comment.date}}</div>
<pre class="content">
{{ comment|commentsyntax }}
</pre>