Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: improve example with full html

...

External links to images are permitted in the non "reportDisplay" divs to permit the display of logos but the user or system may refuse to download these images and the display formatting should not be dependent on the image downloading. The core report html should display in a readable way with the CSS removed and information in the core report data should not be hidden by CSS formatting directives.

An example skeletal structure of the html body is below:

A div with class patientDemographicHeader must be used by senders to include a desired rendering of their current snapshot of patient demographics. Receiving systems must display (on screen and in printouts) patient demographics based on the PID segment as patient names and demographics can change over time, this ensures that current information is displayed.

An example skeletal structure of the html is below:

Code Block
<?xml version="1.0" encoding="us-ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>...</head>
<body>
<div>
<div class="sendingAuthorityHeader">Letterhead here</div>

...


<div class="patientDemographicHeader">Patient demographic header here</div>

...


<div class="reportDisplay">Clinical content here</div>

...


<div class="sendingAuthorityFooter>Letterhead footer here</div>

...


</div>

...


</body>

...


</html>

 

5. Internal linking to images

...