@@ -63,7 +63,7 @@ $(function () {
6363 var na = currentConfig . rows [ 0 ] . doc . nationName . substring ( 3 , 5 ) ;
6464 $ ( '.courseEditStep' ) . empty ( ) ;
6565 $ ( '.courseEditStep' ) . append ( '<h3>' + App . languageDict . attributes . Course_Members + ' | ' + courseModel . get ( 'name' ) + '</h3>' )
66- var viewtext = '<table id = "Table1" class="btable btable-striped"><th>' + App . languageDict . attributes . Photo + '</th><th>' + App . languageDict . attributes . Name + '</th><th>' + App . languageDict . attributes . Roles + '</th><th colspan=2 >' + App . languageDict . attributes . Actions + '</th>'
66+ var viewtext = '<table id = "Table1" class="btable btable-striped"><th>' + App . languageDict . attributes . Photo + '</th><th>' + App . languageDict . attributes . Name + '</th><th>' + App . languageDict . attributes . Roles + '</th><th>' + App . languageDict . attributes . Community + '</th><th colspan="2" >'+ App . languageDict . attributes . Actions + '</th>'
6767 for ( var i = 0 ; i < member_list . length ; i ++ ) {
6868 var mems = new App . Models . Member ( {
6969 _id : member_list [ i ]
@@ -84,7 +84,7 @@ $(function () {
8484 attchmentURL = attchmentURL + _ . keys ( mems . get ( '_attachments' ) ) [ 0 ]
8585 src = attchmentURL
8686 }
87- viewtext += '<tr><td><img width="45px" height="45px" src="' + src + '"/></td><td>' + mems . get ( 'firstName' ) + ' ' + mems . get ( 'lastName' ) + '</td><td>' + roleOfMem + '</td><td><input type="checkbox" name="courseMember" value="' + mail + '">' + App . languageDict . attributes . Send_Email + '</td>'
87+ viewtext += '<tr><td><img width="45px" height="45px" src="' + src + '"/></td><td>' + mems . get ( 'firstName' ) + ' ' + mems . get ( 'lastName' ) + '</td><td>' + roleOfMem + '</td><td>' + mems . get ( 'community' ) + '</td><td> <input type="checkbox" name="courseMember" value="' + mail + '">' + App . languageDict . attributes . Send_Email + '</td>'
8888 var loggedIn = new App . Models . Member ( {
8989 "_id" : $ . cookie ( 'Member._id' )
9090 } )
@@ -105,7 +105,7 @@ $(function () {
105105 'onclick=showComposePopupMultiple("' + mail + '") id="sendMailButton">'
106106 + App . languageDict . attributes . Send_Email + '</button>' +
107107 '<button class="btn" id="retrunBack" onclick=retrunBack()>'
108- + App . languageDict . attributes . Back + '</button></td><td></td><td></td></tr>' ;
108+ + App . languageDict . attributes . Back + '</button></td><td></td><td></td><td></td>< /tr>' ;
109109 viewtext += '</table>' ;
110110 $ ( '.courseEditStep' ) . append ( viewtext )
111111 }
0 commit comments