-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreplicaSet.vm
executable file
·54 lines (47 loc) · 1.2 KB
/
replicaSet.vm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<HTML>
<HEAD>
<TITLE>$title</TITLE>
</HEAD>
<BODY>
<TABLE border="1">
<tr>
<th>List of Collections in the Replica Set</th>
</tr>
#foreach( $collection in $collectionsList )
<TR style="border-bottom:1px solid black">
<TD>$collection</TD>
</TR>
#end
</TABLE>
<TABLE border="1">
<tr>
<th>List of Patients in the Replica Set</th>
</tr>
#foreach( $patient in $patientsList )
<TR style="border-bottom:1px solid black">
<TD>$patient</TD>
</TR>
#end
</TABLE>
<TABLE border="1">
<tr>
<th>List of Studies in the Replica Set</th>
</tr>
#foreach( $study in $studiesList )
<TR style="border-bottom:1px solid black">
<TD>$study</TD>
</TR>
#end
</TABLE>
<TABLE border="1">
<tr>
<th>List of Series in the Replica Set</th>
</tr>
#foreach( $series in $seriesList )
<TR style="border-bottom:1px solid black">
<TD>$series</TD>
</TR>
#end
</TABLE>
</BODY>
</HTML>