diff --git a/productMods/config/objectPropertyList-educationalTraining.xml b/productMods/config/objectPropertyList-educationalTraining.xml
index aa942768..de2dbec8 100644
--- a/productMods/config/objectPropertyList-educationalTraining.xml
+++ b/productMods/config/objectPropertyList-educationalTraining.xml
@@ -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)
- org
-
shortView-educationalTraining.ftl
\ No newline at end of file
diff --git a/productMods/templates/freemarker/body/partials/individual/shortView-educationalTraining.ftl b/productMods/templates/freemarker/body/partials/individual/shortView-educationalTraining.ftl
index 11508a9e..73cff49b 100644
--- a/productMods/templates/freemarker/body/partials/individual/shortView-educationalTraining.ftl
+++ b/productMods/templates/freemarker/body/partials/individual/shortView-educationalTraining.ftl
@@ -11,7 +11,7 @@
#if>
#assign>
-<#assign org>${statement.orgName}#assign>
+<#assign org>${statement.orgName}#assign>
<@s.join [ degree, org, statement.deptOrSchool!, statement.info!, statement.datetime! ] />
#compress>
\ No newline at end of file