Skip to content

Commit cd8952f

Browse files
committed
Added org name to pid table
1 parent 1e32319 commit cd8952f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

_includes/pidtable.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
{% for pid in pids %}
77
{% assign urlparts = pid.url|split:"/" %}
88
{% if include.vid == urlparts[1] %}
9+
{% capture orgpath %}/org/{{pid.owner}}/{% endcapture %}
10+
{% assign org = orgs|where:"url",orgpath|first %}
911
<tr>
1012
<th><a href="{{pid.url}}">{{urlparts[2]}}</a></th>
11-
<td>{{pid.title}}</td>
13+
<td>{{org.title}} {{pid.title}}</td>
1214
</tr>
1315
{% endif %}
1416
{% endfor %}

0 commit comments

Comments
 (0)