Skip to content

Commit

Permalink
Talk result fixes: add see also, add code url.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxShoshin committed Mar 14, 2018
1 parent 6f320fe commit 5ac9702
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/app/result-viewer/result-viewer.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,13 @@
&lt;SpeakerId&gt;{{speaker.id | xmlEncode}}&lt;/SpeakerId&gt;</ng-container>
&lt;/SpeakerIds&gt;
&lt;Title&gt;{{session.talk.title | xmlEncode}}&lt;/Title&gt;
&lt;Description&gt;{{session.talk.description | xmlEncode}}&lt;/Description&gt;
&lt;SlidesUrl&gt;{{session.talk.slidesUrl | xmlEncode}}&lt;/SlidesUrl&gt;
&lt;VideoUrl&gt;{{session.talk.videoUrl | xmlEncode}}&lt;/VideoUrl&gt;
&lt;Description&gt;{{session.talk.description | xmlEncode}}&lt;/Description&gt;<ng-container *ngIf="session.talk.slidesUrl">
&lt;SlidesUrl&gt;{{session.talk.slidesUrl | xmlEncode}}&lt;/SlidesUrl&gt;</ng-container><ng-container *ngIf="session.talk.videoUrl">
&lt;VideoUrl&gt;{{session.talk.videoUrl | xmlEncode}}&lt;/VideoUrl&gt;</ng-container><ng-container *ngIf="session.talk.codeUrl">
&lt;CodeUrl&gt;{{session.talk.codeUrl | xmlEncode}}&lt;/CodeUrl&gt;</ng-container><ng-container *ngIf="session.talk.seeAlsoTalkIds.length >1 || session.talk.seeAlsoTalkIds[0].value">
&lt;SeeAlsoTalkIds&gt;<ng-container *ngFor="let seeAlsoTalkId of session.talk.seeAlsoTalkIds">
&lt;SeeAlsoTalkId&gt;{{seeAlsoTalkId.value | xmlEncode}}&lt;/SeeAlsoTalkId&gt;</ng-container>
&lt;/SeeAlsoTalkIds&gt;</ng-container>
&lt;/Talk&gt;
</pre>
</div>
Expand Down

0 comments on commit 5ac9702

Please sign in to comment.