Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
5484cfd0
Commit
5484cfd0
authored
Jul 06, 2012
by
Galen Frechette
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adds links to university profile page
parent
6afb8f7d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
lms/djangoapps/student/views.py
+3
-0
lms/templates/university_profile.html
+3
-0
lms/urls.py
+1
-0
No files found.
lms/djangoapps/student/views.py
View file @
5484cfd0
...
...
@@ -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
)
...
...
lms/templates/university_profile.html
0 → 100644
View file @
5484cfd0
<section
class=
"university_profile"
>
<h1>
HarvardX
</h1>
</section>
lms/urls.py
View file @
5484cfd0
...
...
@@ -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"
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment