This commit is contained in:
parent
07bf2f6c14
commit
70f7b3787d
2 changed files with 4 additions and 5 deletions
|
@ -6,8 +6,9 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
SELECT DISTINCT ?edTraining ?org ?orgName ?degree ?degreeName ?degreeAbbr ?majorField ?deptOrSchool ?info ?dateTime WHERE {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining core:trainingAtOrganization ?org .
|
||||
?org rdfs:label ?orgName
|
||||
?org rdfs:label ?orgName .
|
||||
OPTIONAL { ?edTraining core:degreeEarned ?degree . }
|
||||
OPTIONAL { ?degree rdfs:label ?degreeName . }
|
||||
OPTIONAL { ?degree core:abbreviation ?degreeAbbr . }
|
||||
|
@ -15,11 +16,9 @@
|
|||
OPTIONAL { ?edTraining core:departmentOrSchool ?deptOrSchool . }
|
||||
OPTIONAL { ?edTraining core:supplementalInformation ?info . }
|
||||
OPTIONAL { ?edTraining core:dateTimeInterval ?interval . }
|
||||
OPTIONAL { ?interval core:hasDateTimeValue ?dateTime . }
|
||||
OPTIONAL { ?interval core:hasDateTimeValue ?dateTime . }
|
||||
} ORDER BY DESC(?dateTime)
|
||||
</query>
|
||||
|
||||
<link-target>org</link-target>
|
||||
|
||||
<template>shortView-educationalTraining.ftl</template>
|
||||
</view-config>
|
|
@ -11,7 +11,7 @@
|
|||
</#if>
|
||||
</#assign>
|
||||
|
||||
<#assign org><a href="${statement.orgUrl}">${statement.orgName}</a></#assign>
|
||||
<#assign org><a href="${url(statement.org)}">${statement.orgName}</a></#assign>
|
||||
|
||||
<@s.join [ degree, org, statement.deptOrSchool!, statement.info!, statement.datetime! ] />
|
||||
</#compress>
|
Loading…
Add table
Reference in a new issue