dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #41702
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 21266: Added title to the 'completed' checkbox
------------------------------------------------------------
revno: 21266
committer: jijukjose <jijukjose@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2015-12-02 15:01:24 +0100
message:
Added title to the 'completed' checkbox
modified:
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-event-capture/views/home.html
--
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-apps/src/main/webapp/dhis-web-event-capture/views/home.html'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-event-capture/views/home.html 2015-12-02 13:43:14 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-event-capture/views/home.html 2015-12-02 14:01:24 +0000
@@ -125,10 +125,17 @@
<div class="bordered-div">
<div ng-if="displayCustomForm" ng-include="'views/ec-custom-form.html'"></div>
<div ng-if="!displayCustomForm" ng-include="'views/defaultForm.html'"></div>
- <div class="row">
- <div class="col-sm-1">Completed</div>
- <input type="checkbox" ng-model="currentEvent.status" style="margin-left: 50px;">
- </div>
+ <table>
+ <tbody>
+ <tr>
+ <th colspan="2">The form completion status</th>
+ </tr>
+ <tr>
+ <td>Form Completed</td>
+ <td><input type="checkbox" ng-model="currentEvent.status" style="margin-left: 50px;"></td>
+ </tr>
+ </tbody>
+ </table>
<div ng-include="'views/comments-section.html'"></div>
<div ng-include="'views/buttons-section.html'"></div>
</div>