This repository was archived by the owner on Sep 23, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-9
lines changed
Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 11{
2- "identifier" : " com.learningobjects.etui" ,
3- "name" : " Extended Transcript" ,
2+ "identifier" : " com.learningobjects.etui.uwc " ,
3+ "name" : " Extended Transcript - UWC " ,
44 "version" : " 1.0.0" ,
55 "components" : [{
6- "identifier" : " loi.cp.ExtendedTranscriptUI" ,
7- "name" : " Extended Transcript UI" ,
6+ "identifier" : " loi.cp.ExtendedTranscriptUI.UWC " ,
7+ "name" : " Extended Transcript UI - UWC " ,
88 "description" : " View standardized transcripts." ,
99 "implementation" : " loi.cp.generic.GenericServlet" ,
1010 "annotations" : {
1111 "com.learningobjects.cpxp.component.web.ServletBinding" : {
12- "path" : " /extended-transcript"
12+ "path" : " /extended-transcript/uwc "
1313 }
1414 }
1515 }],
Original file line number Diff line number Diff line change 77 "created_at" : " 2015-05-05T04:00:00.000Z" ,
88 "organization" : {
99 "@id" : " http://purl.kinexis.com:8888/organizations/7" ,
10- "legal_name" : " Atlas University" ,
11- "website" : " ili.imsglobal.org "
10+ "legal_name" : " University of Wisconsin Colleges " ,
11+ "website" : " https://www.uwc.edu/about "
1212 },
1313 "program" : {
1414 "@id" : " http://purl.kinexis.com:8888/programs/7" ,
Original file line number Diff line number Diff line change 1717 </ div >
1818
1919 < div class ="transcript-header ">
20- < img ng-src ="{{domain_logo_secondary}} " class ="logo "/>
20+ < a href =" {{domain_website}} " > < img ng-src ="{{domain_logo_secondary}} " class ="logo "/> </ a >
2121 < div class ="right ">
2222 < div class ="user-name "> {{transcript.user.givenName}} {{transcript.user.familyName}}</ div >
2323 < div class ="user-id "> Student Id: {{transcript.user.sourced_id}}</ div >
Original file line number Diff line number Diff line change 22import request from 'superagent' ;
33
44import template from './transcript.html' ;
5- import domain_logo from '../../images/Atlas .png' ;
5+ import domain_logo from '../../images/uwc .png' ;
66import moment from "moment" ;
77import _ from 'lodash' ;
88
@@ -34,6 +34,7 @@ export default ['$http', function($http){
3434 . then ( function ( res ) {
3535 scope . transcriptLoading = false ;
3636 scope . transcript = res . data ;
37+ scope . domain_website = scope . transcript . organization . website ;
3738 scope . transcript . created_at = moment ( scope . transcript . created_at ) . format ( 'l' ) ;
3839 scope . outcomes = _ . chain ( scope . transcript . program . courses )
3940 . pluck ( "competencies" )
You can’t perform that action at this time.
0 commit comments