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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/exportMetaDataForm.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
 
 
2
<h3>$i18n.getString( "$exportFormat" ) $i18n.getString( "metadata_export" )</h3>
 
3
 
 
4
<form id="exportForm" name="exportForm" method="post" action="exportMetaData.action">
 
5
 
 
6
<input type="hidden" name="exportFormat" value="$!exportFormat">
 
7
 
 
8
<table width="325">
 
9
        
 
10
        <colgroup>
 
11
                <col width="25">
 
12
                <col width="300">
 
13
        </colgroup>
 
14
        
 
15
        <!-- Elements -->
 
16
        
 
17
        <tr>
 
18
                <th colspan="2">$i18n.getString( "elements" )</th>
 
19
        </tr>
 
20
        <tr>
 
21
                <td><input id="dataElements" name="dataElements" type="checkbox" value="true"></td>
 
22
                <td><label for="dataElements">$i18n.getString( 'data_elements' )</label></td>
 
23
        </tr>
 
24
        <tr>
 
25
                <td><input id="dataElementGroups" name="dataElementGroups" type="checkbox" value="true"></td>
 
26
                <td><label for="dataElementGroups">$i18n.getString( 'data_element_groups' )</label></td>
 
27
        </tr>   
 
28
        <tr>
 
29
                <td><input id="indicators" name="indicators" type="checkbox" value="true"></td>
 
30
                <td><label for="indicators">$i18n.getString( 'indicators' )</label></td>
 
31
        </tr>
 
32
        <tr>
 
33
                <td><input id="indicatorGroups" name="indicatorGroups" type="checkbox" value="true"></td>
 
34
                <td><label for="indicatorGroups">$i18n.getString( 'indicator_groups' )</label></td>
 
35
        </tr>
 
36
        <tr>
 
37
                <td><input id="dataDictionaries" name="dataDictionaries" type="checkbox" value="true"></td>
 
38
                <td><label for="dataDictionaries">$i18n.getString( 'data_dictionaries' )</label></td>
 
39
        </tr>
 
40
        <tr>
 
41
                <td><input id="dataSets" name="dataSets" type="checkbox" value="true"></td>
 
42
                <td><label for="dataSets">$i18n.getString( 'data_sets' )</label></td>
 
43
        </tr>
 
44
        <tr>
 
45
                <td><input id="organisationUnits" name="organisationUnits" type="checkbox" value="true"></td>
 
46
                <td><label for="organisationUnits">$i18n.getString( 'organisation_units' )</label></td>
 
47
        </tr>
 
48
        <tr>
 
49
                <td><input id="organisationUnitGroups" name="organisationUnitGroups" type="checkbox" value="true"></td>
 
50
                <td><label for="organisationUnitGroups">$i18n.getString( 'organisation_unit_groups' )</label></td>
 
51
        </tr>
 
52
        <tr>
 
53
                <td><input id="organisationUnitGroupSets" name="organisationUnitGroupSets" type="checkbox" value="true"></td>
 
54
                <td><label for="organisationUnitGroupSets">$i18n.getString( 'organisation_unit_group_sets' )</label></td>
 
55
        </tr>
 
56
    <tr>
 
57
        <td><input id="organisationUnitLevels" name="organisationUnitLevels" type="checkbox" value="true"></td>
 
58
        <td><label for="organisationUnitLevels">$i18n.getString( 'organisation_unit_levels' )</label></td>
 
59
    </tr>
 
60
    <tr>
 
61
        <td><input id="validationRules" name="organisationUnitGroupSets" type="checkbox" value="true"></td>
 
62
        <td><label for="validationRules">$i18n.getString( 'validation_rules' )</label></td>     
 
63
    </tr>
 
64
    <tr>
 
65
        <td><input id="reportTables" name="reportTables" type="checkbox" value="true"></td>
 
66
        <td><label for="reportTables">$i18n.getString( 'report_tables' )</label></td>
 
67
    </tr>
 
68
    <tr>
 
69
        <td><input id="olapUrls" name="olapUrls" type="checkbox" value="true"></td>
 
70
        <td><label for="olapUrls">$i18n.getString( 'olap_urls' )</label></td>
 
71
    </tr>
 
72
        
 
73
        <!-- Submit -->
 
74
        
 
75
        <tr>            
 
76
                <td colspan="2">
 
77
                        <input type="submit" value="$i18n.getString( 'export' )" style="width:34%"><input
 
78
                                type="button" value="$i18n.getString( 'select_all' )" style="width:33%" onclick="toggle( 'all' )"><input
 
79
                                type="button" value="$i18n.getString( 'select_none' )" style="width:33%" onclick="toggle( 'none' )">
 
80
                </td>
 
81
        </tr>
 
82
        
 
83
</table>
 
84
 
 
85
</form>
 
86