This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from dibik96/17.0-develop
SR-53: Changes in members form validation and member form jquery.
- Loading branch information
Showing
4 changed files
with
50 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,8 +67,6 @@ | |
<tr> | ||
<th>Sr.No.</th> | ||
<th>Household Name <i class="fa fa-sort" /></th> | ||
<th>Region <i class="fa fa-sort" /></th> | ||
<th>Kebele <i class="fa fa-sort" /></th> | ||
<th>Members</th> | ||
<th>Last Updated </th> | ||
<th>Enumerator</th> | ||
|
@@ -86,12 +84,6 @@ | |
> | ||
<t t-out="group['name']" /> | ||
</td> | ||
<td> | ||
<t t-out="group['region']" /> | ||
</td> | ||
<td> | ||
<t t-out="group['kebele']" /> | ||
</td> | ||
<td> | ||
<t t-out="len(group['group_membership_ids'])" /> | ||
</td> | ||
|
@@ -170,7 +162,7 @@ | |
</ol> | ||
<div id="toast-container"> | ||
<div id="toast-message" /> | ||
<button id="toast-close-btn" onclick="hideToast()"> | ||
<button type="button" id="toast-close-btn" onclick="hideToast()"> | ||
<img | ||
src="/g2p_service_provider_portal_base/static/src/img/[email protected]" | ||
/> | ||
|
@@ -507,6 +499,7 @@ | |
type="text" | ||
id="given_name" | ||
name="given_name" | ||
required="required" | ||
class="form-control" | ||
/> | ||
</div> | ||
|
@@ -552,6 +545,7 @@ | |
type="text" | ||
id="family_name" | ||
name="family_name" | ||
required="required" | ||
class="form-control" | ||
/> | ||
</div> | ||
|
@@ -580,6 +574,7 @@ | |
type="date" | ||
id="birthdate" | ||
name="birthdate" | ||
required="required" | ||
class="form-control date-picker" | ||
/> | ||
</div> | ||
|
@@ -604,6 +599,7 @@ | |
<select | ||
class="form-select" | ||
name="gender" | ||
required="required" | ||
> | ||
<option value=""> | ||
Select</option> | ||
|
@@ -689,6 +685,7 @@ | |
<div id="toast-message" /> | ||
<button | ||
id="toast-close-btn" | ||
type="button" | ||
onclick="hideToast()" | ||
> | ||
<img | ||
|
@@ -723,10 +720,6 @@ | |
> | ||
Submit | ||
</button> | ||
|
||
|
||
|
||
|
||
</div> | ||
</div> | ||
</div> | ||
|
@@ -1055,6 +1048,7 @@ | |
type="text" | ||
id="given_name" | ||
name="given_name" | ||
required="required" | ||
class="form-control" | ||
/> | ||
</div> | ||
|
@@ -1100,6 +1094,7 @@ | |
type="text" | ||
id="family_name" | ||
name="family_name" | ||
required="required" | ||
class="form-control" | ||
/> | ||
</div> | ||
|
@@ -1128,6 +1123,7 @@ | |
type="date" | ||
id="birthdate" | ||
name="birthdate" | ||
required="required" | ||
class="form-control date-picker" | ||
/> | ||
</div> | ||
|
@@ -1152,6 +1148,7 @@ | |
<select | ||
class="form-select" | ||
name="gender" | ||
required="required" | ||
> | ||
<option value=""> | ||
Select</option> | ||
|
@@ -1237,6 +1234,7 @@ | |
<div id="toast-message" /> | ||
<button | ||
id="toast-close-btn" | ||
type="button" | ||
onclick="hideToast()" | ||
> | ||
<img | ||
|