dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #31746
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 16219: Data entry, history, removed use of italic font
------------------------------------------------------------
revno: 16219
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2014-07-23 14:00:00 +0200
message:
Data entry, history, removed use of italic font
modified:
dhis-2/dhis-web/dhis-web-dataentry/src/main/webapp/dhis-web-dataentry/history.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-dataentry/src/main/webapp/dhis-web-dataentry/history.vm'
--- dhis-2/dhis-web/dhis-web-dataentry/src/main/webapp/dhis-web-dataentry/history.vm 2014-07-11 13:59:24 +0000
+++ dhis-2/dhis-web/dhis-web-dataentry/src/main/webapp/dhis-web-dataentry/history.vm 2014-07-23 12:00:00 +0000
@@ -44,7 +44,7 @@
<td>$encoder.htmlEncode( $i18n.getString( "min_limit" ) ) </td>
<td><input type="text" id="minLimit" style="width:10em" value="$!{dataElementHistory.minLimit}" class="{validate:{digits:true}}"
#if( !$auth.hasAccess( "dhis-web-dataentry", "saveMinMaxLimits" ) || ${minMaxInvalid} ) disabled="disabled"#end />
- <i><span id="minSpan" style="color:red"></span></i>
+ <span id="minSpan" style="color:red"></span>
</td>
</tr>
<tr>
@@ -52,7 +52,7 @@
<td>$encoder.htmlEncode( $i18n.getString( "max_limit" ) ) </td>
<td><input type="text" id="maxLimit" style="width:10em" value="$!{dataElementHistory.maxLimit}" class="{validate:{digits:true}}"
#if( !$auth.hasAccess( "dhis-web-dataentry", "saveMinMaxLimits" ) || ${minMaxInvalid} ) disabled="disabled"#end />
- <i><span id="maxSpan" style="color:red"></span></i>
+ <span id="maxSpan" style="color:red"></span>
</td>
</tr>
<tr>
@@ -114,25 +114,25 @@
#if( $dataValueAudit.modifiedBy )
$dataValueAudit.modifiedBy
#else
- <i>$encoder.htmlEncode( $i18n.getString( "no_value" ) )</i>
+ $encoder.htmlEncode( $i18n.getString( "no_value" ) )
#end
</td>
<td>
#if( $dataValueAudit.value )
$dataValueAudit.value
#else
- <i>$encoder.htmlEncode( $i18n.getString( "no_value" ) )</i>
+ $encoder.htmlEncode( $i18n.getString( "no_value" ) )
#end
</td>
<td>
- <i>$i18n.getString( $dataValueAudit.auditType.getValue() )</i>
+ $i18n.getString( $dataValueAudit.auditType.getValue() )
</td>
</tr>
#end
</tbody>
</table>
#else
- <i>$encoder.htmlEncode( $i18n.getString( "there_is_no_audit_trail_for_this_value" ) )</i>
+ $encoder.htmlEncode( $i18n.getString( "there_is_no_audit_trail_for_this_value" ) )
#end
</div>
</div>