source: ccr2ccd-xslt/trunk/gpl/ccd-providers.xsl@ 981

Last change on this file since 981 was 981, checked in by George Lilly, 14 years ago

latest version

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