Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#11254] Instructor Feedback Session Results: Session Duration formatting #11272

Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ private String getUserHeader(boolean isGiver, String name) {
}

private String getSessionDurationString(FeedbackSessionAttributes feedbackSession) {
return getDateString(feedbackSession.getStartTime(), feedbackSession.getTimeZone()) + " to "
return getDateString(feedbackSession.getStartTime(), feedbackSession.getTimeZone()) + " to\n"
+ getDateString(feedbackSession.getEndTime(), feedbackSession.getTimeZone());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1>
<div class="form-group row">
<label class="col-lg-4 control-label"><b>Session duration:</b></label>
<div id="session-duration" class="col-lg-8">
<p class="form-control-static">{{ formattedSessionOpeningTime }}&nbsp;&nbsp;&nbsp;<b>to</b>&nbsp;&nbsp;&nbsp;{{ formattedSessionClosingTime }}</p>
<p class="form-control-static">{{ formattedSessionOpeningTime }}&nbsp;&nbsp;&nbsp;<b>to</b><br>{{ formattedSessionClosingTime }}</p>
</div>
</div>
<div class="form-group row">
Expand Down