Cross reference the settings pages

This commit is contained in:
Don Mitchell
2013-02-11 15:02:02 -05:00
parent 04e3d68bd5
commit de0fd2ef0c
2 changed files with 8 additions and 0 deletions

View File

@@ -209,12 +209,16 @@ from contentstore import utils
</div>
<div class="bit">
% if context_course:
<% ctx_loc = context_course.location %>
<%! from django.core.urlresolvers import reverse %>
<h3 class="title-3">Other Course Settings</h3>
<nav class="nav-related">
<ul>
<li class="nav-item"><a href="${reverse('contentstore.views.course_config_graders_page', kwargs={'org' : ctx_loc.org, 'course' : ctx_loc.course, 'name': ctx_loc.name})}">Grading</a></li>
</ul>
</nav>
% endif
</div>
</aside>
</section>

View File

@@ -131,12 +131,16 @@ from contentstore import utils
</div>
<div class="bit">
% if context_course:
<% ctx_loc = context_course.location %>
<%! from django.core.urlresolvers import reverse %>
<h3 class="title-3">Other Course Settings</h3>
<nav class="nav-related">
<ul>
<li class="nav-item"><a href="${reverse('contentstore.views.get_course_settings', kwargs=dict(org=ctx_loc.org, course=ctx_loc.course, name=ctx_loc.name))}">Details &amp; Schedule</a></li>
</ul>
</nav>
% endif
</div>
</aside>
</section>