We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e32319 commit cd8952fCopy full SHA for cd8952f
_includes/pidtable.html
@@ -6,9 +6,11 @@
6
{% for pid in pids %}
7
{% assign urlparts = pid.url|split:"/" %}
8
{% if include.vid == urlparts[1] %}
9
+ {% capture orgpath %}/org/{{pid.owner}}/{% endcapture %}
10
+ {% assign org = orgs|where:"url",orgpath|first %}
11
<tr>
12
<th><a href="{{pid.url}}">{{urlparts[2]}}</a></th>
- <td>{{pid.title}}</td>
13
+ <td>{{org.title}} {{pid.title}}</td>
14
</tr>
15
{% endif %}
16
{% endfor %}
0 commit comments