Files
pidcodes.github.com/_includes/pidtable.html
2015-04-03 22:48:04 +01:00

18 lines
490 B
HTML

{% include data.html %}
<table>
<thead>
<tr><th>PID</th><th>Device</th></tr>
</thead>
{% for pid in pids %}
{% assign urlparts = pid.url|split:"/" %}
{% if include.vid == urlparts[1] %}
{% capture orgpath %}/org/{{pid.owner}}/{% endcapture %}
{% assign org = orgs|where:"url",orgpath|first %}
<tr>
<th><a href="{{pid.url}}">{{urlparts[2]}}</a></th>
<td>{{org.title}} {{pid.title}}</td>
</tr>
{% endif %}
{% endfor %}
</table>