Line | |
---|
1 | <!--
|
---|
2 | <xsl:if test="a:ContinuityOfCareRecord/a:Body/a:SupportProviders">
|
---|
3 | <component>
|
---|
4 | <section>
|
---|
5 | <title>Support Providers</title>
|
---|
6 | <text>
|
---|
7 | <table>
|
---|
8 | <tbody>
|
---|
9 | <tr>
|
---|
10 | <th>Role</th>
|
---|
11 | <th>Name</th>
|
---|
12 | </tr>
|
---|
13 | <xsl:for-each select="/a:ContinuityOfCareRecord/a:Body/a:Support/a:SupportProvider">
|
---|
14 | <tr>
|
---|
15 | <td>
|
---|
16 | <xsl:value-of select="a:ActorRole/a:Text"/>
|
---|
17 | </td>
|
---|
18 | <td>
|
---|
19 | <xsl:call-template name="actorName">
|
---|
20 | <xsl:with-param name="objID" select="a:Source/a:Actor/a:ActorID"/>
|
---|
21 | </xsl:call-template>
|
---|
22 | </td>
|
---|
23 | </tr>
|
---|
24 | </xsl:for-each>
|
---|
25 | </tbody>
|
---|
26 | </table>
|
---|
27 | </text>
|
---|
28 | </section>
|
---|
29 | </component>
|
---|
30 | </xsl:if>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.