dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #36264
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 18573: Program indicator, consistency fix
------------------------------------------------------------
revno: 18573
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2015-03-10 17:28:17 +0100
message:
Program indicator, consistency fix
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-program/src/main/webapp/dhis-web-maintenance-program/programIndicatorForm.vm
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-program/src/main/webapp/dhis-web-maintenance-program/programIndicatorForm.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-program/src/main/webapp/dhis-web-maintenance-program/programIndicatorForm.vm 2015-03-10 13:00:30 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-program/src/main/webapp/dhis-web-maintenance-program/programIndicatorForm.vm 2015-03-10 16:28:17 +0000
@@ -112,30 +112,21 @@
<p></p>
<table>
-
+ <tr>
+ <th>$i18n.getString( "expression" )</th>
+ </tr>
<tr>
<td>
- <fieldset>
- <legend>$i18n.getString( "expression" ) <em title="$i18n.getString( "required" )" class="required">*</em></legend>
- <table>
- <tr>
- <td>
- <textarea style="width:660px" id="expression" name="expression" onkeyup='getConditionDescription();' >$!encoder.htmlEncode($!programIndicator.expression)</textarea>
- </td>
- </tr>
- </table>
- </fieldset>
+ <textarea style="width:660px" id="expression" name="expression" onkeyup='getConditionDescription();' >$!encoder.htmlEncode($!programIndicator.expression)</textarea>
</td>
- </tr>
-
+ </tr>
+ <tr>
+ <th>$i18n.getString( "description" )</th>
+ </tr>
<tr>
<td>
- <fieldset>
- <legend>$i18n.getString( "description" )</legend>
- <div id='aggregationDescription'>$!encoder.htmlEncode($!description)</div>
-
- <input type="hidden" id="checkExpression" name="checkExpression" title="$i18n.getString('expression_is_not_well_formed')" class="{validate:{required:true}}" />
- </fieldset>
+ <div id='aggregationDescription' style="padding: 5px 0 20px 0">$!encoder.htmlEncode($!description)</div>
+ <input type="hidden" id="checkExpression" name="checkExpression" title="$i18n.getString('expression_is_not_well_formed')" class="{validate:{required:true}}" />
</td>
</tr>
</table>