~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to local/et/dhis-web-ethiopia/src/main/webapp/dhis-web-reports/reportForm.vm

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<h2>Generate Monthly Report for $orgUnitName</h2> 
 
2
 
 
3
<form id="reportForm" name="reportForm" action="generateReport.action" method="post" onsubmit="">
 
4
  <input type="hidden" id="monthlyPeriodTypeId" name="monthlyPeriodTypeId" value="$monthlyPeriodTypeId"/>
 
5
 
 
6
  <table id="reportOptions">
 
7
    <col> ## Labels
 
8
    <col> ## Input
 
9
    <thead>
 
10
      <tr>
 
11
        <th colspan="2">Report details</th>
 
12
      </tr>
 
13
    </thead>
 
14
    <tbody>
 
15
        <tr>
 
16
          <td><label>Period: </label></td>
 
17
          <td>
 
18
            <select id="periodSelect" name="periodSelect" style="width:20em">
 
19
              #foreach( $period in $monthlyPeriods )
 
20
                <option value="$period.id">$period.startDate - $period.endDate</option>
 
21
              #end
 
22
            </select>
 
23
          </td>
 
24
        </tr>
 
25
      <tr>
 
26
        <td><label>Report:</label></td>
 
27
          <td>
 
28
            <select id="reportSelect" name="reportSelect" style="width:20em">
 
29
                        <option value="mm">DATA ENTRY for Morbidity and Mortality</option>
 
30
 
 
31
                        <option value="k">Abortion & Post Abortion Care Service</option>
 
32
                        <option value="l">Adolescent Reproductive Health Report</option>
 
33
                        <option value="m">Antenatal Care</option>
 
34
                        <option value="i">Blood Bank Report</option>
 
35
                        <option value="n">Children Vaccination Report</option>
 
36
                        <option value="g">Contraceptive Logistics Report</option>
 
37
                        <option value="o">Delivery Report</option>
 
38
                        <option value="j">Discharged Patient By Department/Ward/Type of Case </option>
 
39
                        <option value="p">Family Planning Report</option>
 
40
                        <option value="q">Growth Monitoring Report</option>
 
41
                        <option value="f">Health Education Report</option>
 
42
                        <option value="a">Health Learning Materials Report</option>
 
43
                        <option value="b">Integrated Management of Chlid Illness(IMCI)</option>
 
44
                        <option value="h">Laboratory Test Reportt</option>
 
45
                        <option value="r">Maternal Complication Admitted & Treated</option>
 
46
                        <option value="v">Nutrition Report</option>
 
47
                        <option value="s">Outpatient Summary Report</option>
 
48
                        <option value="t">Postnatal Report</option>
 
49
                        <option value="e">Radiology Service Report</option>
 
50
                        <option value="u">TT Vaccination Report</option>
 
51
                        <option value="c">Vaccine Logistics Report</option>
 
52
                        <option value="d">Voluntary Counseling & Testing(VCT)</option>
 
53
                        
 
54
                
 
55
 
 
56
 
 
57
            </select>
 
58
          </td>
 
59
      </tr>
 
60
      <tr>
 
61
        <td colspan="2">
 
62
          <input type="submit" name="generate" value="Generate report"/>
 
63
        </td>
 
64
      </tr>
 
65
    </tbody>
 
66
  </table>
 
67
</form>