adds links to university profile page
This commit is contained in:
@@ -507,6 +507,9 @@ def about(request):
|
||||
return render_to_response('about.html', None)
|
||||
|
||||
|
||||
def university_profile(request):
|
||||
return render_to_response('university_profile.html', None)
|
||||
|
||||
def jobs(request):
|
||||
return render_to_response('jobs.html', None)
|
||||
|
||||
|
||||
3
lms/templates/university_profile.html
Normal file
3
lms/templates/university_profile.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<section class="university_profile">
|
||||
<h1>HarvardX</h1>
|
||||
</section>
|
||||
@@ -13,6 +13,7 @@ if settings.DEBUG:
|
||||
urlpatterns = ('',
|
||||
url(r'^$', 'student.views.index', name="root"), # Main marketing page, or redirect to courseware
|
||||
url(r'^about$', 'student.views.about', name="about_edx"),
|
||||
url(r'^university_profile$', 'student.views.university_profile', name="university_profile"),
|
||||
url(r'^jobs$', 'student.views.jobs', name="jobs"),
|
||||
url(r'^help$', 'student.views.help', name="help_edx"),
|
||||
url(r'^dashboard$', 'student.views.dashboard', name="dashboard"),
|
||||
|
||||
Reference in New Issue
Block a user