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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-openhealth-integration/src/main/webapp/dhis-web-openhealth-integration/saveViewForm.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( "save_view" )</h3>
 
3
 
 
4
<form action="saveOlapURL.action" method="post">
 
5
 
 
6
<input type="hidden" name="id" value="$!url.id">
 
7
 
 
8
<table>
 
9
        <tr>
 
10
                <td>$i18n.getString( "name" )</td>
 
11
                <td><input type="text" name="name" value="$!url.name" style="width:400px"></td>
 
12
        </tr>
 
13
        <tr>
 
14
                <td>$i18n.getString( "url" )</td>
 
15
                <td><textarea name="url" style="width:400px; height:120px;">$!url.url</textarea></td>
 
16
        </tr>
 
17
        <tr>
 
18
                <td></td>
 
19
                <td><input type="submit" value="$i18n.getString( 'save' )" style="width:50%"><input 
 
20
                        type="button" value="$i18n.getString( 'cancel' )" style="width:50%" 
 
21
                        onclick="window.location.href='getAllOlapURLs.action'"></td>
 
22
        </tr>
 
23
</table>
 
24
 
 
25
</form>