Index: lams_tool_zoom/src/java/org/lamsfoundation/lams/tool/zoom/dto/ContentDTO.java =================================================================== diff -u -rfba5bdf4505b4dbe6d95809740ac8f3c14b07ef1 -rf3597ff0f80f2a783b8c3499b123a59f5e948db4 --- lams_tool_zoom/src/java/org/lamsfoundation/lams/tool/zoom/dto/ContentDTO.java (.../ContentDTO.java) (revision fba5bdf4505b4dbe6d95809740ac8f3c14b07ef1) +++ lams_tool_zoom/src/java/org/lamsfoundation/lams/tool/zoom/dto/ContentDTO.java (.../ContentDTO.java) (revision f3597ff0f80f2a783b8c3499b123a59f5e948db4) @@ -41,13 +41,17 @@ String reflectInstructions; + boolean startInMonitor; + + Integer duration; + Long currentTab; boolean contentInUse; boolean isGroupedActivity; // set manually in MonitoringAction - Set sessionDTOs = new TreeSet(); + Set sessionDTOs = new TreeSet<>(); /* Constructors */ public ContentDTO() { @@ -60,6 +64,8 @@ this.contentInUse = zoom.isContentInUse(); this.reflectInstructions = zoom.getReflectInstructions(); this.reflectOnActivity = zoom.isReflectOnActivity(); + this.startInMonitor = zoom.isStartInMonitor(); + this.duration = zoom.getDuration(); for (ZoomSession session : zoom.getZoomSessions()) { sessionDTOs.add(new SessionDTO(session)); } @@ -91,6 +97,22 @@ this.reflectInstructions = reflectInstructions; } + public boolean isStartInMonitor() { + return startInMonitor; + } + + public void setStartInMonitor(boolean startInMonitor) { + this.startInMonitor = startInMonitor; + } + + public Integer getDuration() { + return duration; + } + + public void setDuration(Integer duration) { + this.duration = duration; + } + public String getTitle() { return title; } Index: lams_tool_zoom/web/pages/monitoring/summary.jsp =================================================================== diff -u -r1fd4b3566dce64fc2865599d2d67a971a5490f2f -rf3597ff0f80f2a783b8c3499b123a59f5e948db4 --- lams_tool_zoom/web/pages/monitoring/summary.jsp (.../summary.jsp) (revision 1fd4b3566dce64fc2865599d2d67a971a5490f2f) +++ lams_tool_zoom/web/pages/monitoring/summary.jsp (.../summary.jsp) (revision f3597ff0f80f2a783b8c3499b123a59f5e948db4) @@ -68,6 +68,61 @@ - + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + ${contentDTO.duration} + +
+ + + + + + + + + + +
+ + + +
\ No newline at end of file