We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f37bd86 commit 20069f6Copy full SHA for 20069f6
patchwork/templates/patchwork/partials/patch-list.html
@@ -85,6 +85,12 @@
85
{% endif %}
86
</th>
87
88
+{% if user.is_authenticated and user.profile.show_ids %}
89
+ <th>
90
+ Series ID
91
+ </th>
92
+{% endif %}
93
+
94
<th>
95
<span class="colinactive">Series</span>
96
@@ -190,6 +196,15 @@
190
196
{{ patch.name|default:"[no subject]"|truncatechars:100 }}
191
197
</a>
192
198
</td>
199
200
+ <td>
201
+{% if patch.series %}
202
+ <button type="button" class="btn btn-xs btn-copy" data-clipboard-text="{{ patch.series.id }}" title="Copy to Clipboard">
203
+ {{ patch.series.id }}
204
+ </button>
205
206
+ </td>
207
193
208
<td>
194
209
{% if patch.series %}
195
210
<a href="?series={{patch.series.id}}">
0 commit comments