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

move instructor tab breadcrumbs below navigation tabs #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 12 additions & 14 deletions src/main/webapp/views/instructor.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,23 @@
<% controller.processInstructor(pageContext, request); %>
<ul class="navIntraTool actionToolBar">
<li class="firstToolBarItem"><span><a href="${regPath}"><fmt:message key="reg.title" /></a></span></li>
<li>
<span>
<fmt:message key="inst.title" /> &gt;
<c:choose>
<c:when test="${courseId == null}">
<fmt:message key="inst.all.courses" />
</c:when>
<c:otherwise>
<a href="${instPath}"><fmt:message key="inst.all.courses" /></a> &gt; ${courseTitle}
</c:otherwise>
</c:choose>
</span>
</li>
<li><span class="current"><fmt:message key="inst.title" /></span></li>
<c:if test="${ssoEnabled}">
<li><span><a href="${instSSOPath}"><fmt:message key="inst.sso.link" /></a></span></li>
</c:if>
</ul>

<h3 class="insColor insBak insBorder page_header">&nbsp;<fmt:message key="app.iclicker">iClicker</fmt:message> <fmt:message key="inst.title">Sample Title</fmt:message></h3>
<h3 class="insColor insBak insBorder page_header">&nbsp;<fmt:message key="app.iclicker">iClicker</fmt:message> <fmt:message key="inst.title">Sample Title</fmt:message>
&gt;
<c:choose>
<c:when test="${courseId == null}">
<fmt:message key="inst.all.courses" />
</c:when>
<c:otherwise>
<a href="${instPath}"><fmt:message key="inst.all.courses" /></a> &gt; ${courseTitle}
</c:otherwise>
</c:choose>
</h3>
<!-- show messages if there are any to show -->
<jsp:include page="/views/userMsgs.jsp"></jsp:include>

Expand Down