Index: lams_common/web/WEB-INF/struts/struts-config.xml =================================================================== diff -u -r15c38aa57f9b74cc1e7cc1223494edba207ebf51 -rf4d707caa833b4dc2ebbb72dad0d9f7964e1f2a0 --- lams_common/web/WEB-INF/struts/struts-config.xml (.../struts-config.xml) (revision 15c38aa57f9b74cc1e7cc1223494edba207ebf51) +++ lams_common/web/WEB-INF/struts/struts-config.xml (.../struts-config.xml) (revision f4d707caa833b4dc2ebbb72dad0d9f7964e1f2a0) @@ -18,6 +18,9 @@ + + @@ -62,9 +65,15 @@ + + + + @@ -84,7 +93,21 @@ + + + + + + + "); out.println(""+user.getLogin()+": "+user.getFirstName()+" "+user.getLastName()); out.println(""); - - WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext()); - UserManagementService service = (UserManagementService)ctx.getBean("userManagementServiceTarget"); - out.print(""); Iterator iter = service.getRolesForUserByOrganisation(user,org.getOrganisationId()).iterator(); while ( iter.hasNext() ) @@ -136,12 +132,11 @@

- -
+ " onsubmit="return validateForm()" method="post" ENCTYPE='multipart/form-data' name="form1" id="form1"> -

+

-

If you are not sure of the file format, please download template file

+

If you are not sure of the file format, please download template file

Import Users From File:
@@ -153,17 +148,23 @@
- - + + existing users only


- -

';" @@ -186,9 +187,6 @@

- - - @@ -203,7 +201,14 @@ - <% displayUsers(users, organisation, out, request); %> + + + <% + WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext()); + UserManagementService service = (UserManagementService)ctx.getBean("userManagementServiceTarget"); + List users = service.getUsersFromOrganisation(organisation.getOrganisationId()); + displayUsers(users, organisation, out, request,service); + %>
Users