Index: lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteLearningStarterAction.java =================================================================== diff -u -r9656fbcdd18cc51826a0a61a1bf93bdba249fdc7 -rf3a1931cc8c0a7c20d6d19dd00fdf719c9d055a7 --- lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteLearningStarterAction.java (.../VoteLearningStarterAction.java) (revision 9656fbcdd18cc51826a0a61a1bf93bdba249fdc7) +++ lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteLearningStarterAction.java (.../VoteLearningStarterAction.java) (revision f3a1931cc8c0a7c20d6d19dd00fdf719c9d055a7) @@ -417,7 +417,21 @@ order++; if (voteQueContent != null) { - localMapQuestionsContent.put(new Integer(order).toString(),voteQueContent.getQuestion()); + String entry=voteQueContent.getQuestion(); + logger.debug("entry: " + entry); + if (entry != null) + { + if (entry.equals("sample nomination")) + { + logger.debug("this nomination entry points to a user entered nomination: " + attempt.getUserEntry()); + localMapQuestionsContent.put(new Integer(order).toString(), attempt.getUserEntry()); + } + else + { + logger.debug("this nomination entry points to a standard nomination: " + voteQueContent.getQuestion()); + localMapQuestionsContent.put(new Integer(order).toString(),voteQueContent.getQuestion()); + } + } } } request.getSession().setAttribute(MAP_GENERAL_CHECKED_OPTIONS_CONTENT, localMapQuestionsContent); Index: lams_tool_vote/web/learning/AllNominations.jsp =================================================================== diff -u -r9656fbcdd18cc51826a0a61a1bf93bdba249fdc7 -rf3a1931cc8c0a7c20d6d19dd00fdf719c9d055a7 --- lams_tool_vote/web/learning/AllNominations.jsp (.../AllNominations.jsp) (revision 9656fbcdd18cc51826a0a61a1bf93bdba249fdc7) +++ lams_tool_vote/web/learning/AllNominations.jsp (.../AllNominations.jsp) (revision f3a1931cc8c0a7c20d6d19dd00fdf719c9d055a7) @@ -76,14 +76,14 @@ - + - + @@ -107,12 +107,26 @@ - - - -       + + + + + +       + + + + + + +       + + +