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
7683cba2
Commit
7683cba2
authored
Sep 11, 2014
by
Andy Armstrong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for UX reference templates in LMS
parent
dedd88cc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletions
+21
-1
lms/djangoapps/debug/views.py
+18
-1
lms/templates/ux/reference/instructor_dashboard/membership.html
+0
-0
lms/urls.py
+3
-0
No files found.
lms/djangoapps/debug/views.py
View file @
7683cba2
...
...
@@ -3,7 +3,7 @@
import
pprint
import
traceback
from
django.http
import
Http404
,
HttpResponse
from
django.http
import
Http404
,
HttpResponse
,
HttpResponseNotFound
from
django.contrib.auth.decorators
import
login_required
from
django.utils.html
import
escape
...
...
@@ -12,6 +12,8 @@ from edxmako.shortcuts import render_to_response
from
codejail.safe_exec
import
safe_exec
from
mako.exceptions
import
TopLevelLookupException
@login_required
@ensure_csrf_cookie
...
...
@@ -43,3 +45,18 @@ def show_parameters(request):
for
name
,
value
in
sorted
(
request
.
POST
.
items
()):
html
.
append
(
escape
(
"POST {}: {!r}"
.
format
(
name
,
value
)))
return
HttpResponse
(
"
\n
"
.
join
(
"<p>{}</p>"
.
format
(
h
)
for
h
in
html
))
def
show_reference_template
(
request
,
template
):
"""
Shows the specified template as an HTML page. This is used only in debug mode to allow the UX team
to produce and work with static reference templates.
e.g. /template/ux/reference/container.html shows the template under ux/reference/container.html
Note: dynamic parameters can also be passed to the page.
e.g. /template/ux/reference/container.html?name=Foo
"""
try
:
return
render_to_response
(
template
,
request
.
GET
.
dict
())
except
TopLevelLookupException
:
return
HttpResponseNotFound
(
"Couldn't find template {template}"
.
format
(
template
=
template
))
lms/templates/ux/reference/instructor_dashboard/membership.html
0 → 100644
View file @
7683cba2
This diff is collapsed.
Click to expand it.
lms/urls.py
View file @
7683cba2
...
...
@@ -531,6 +531,9 @@ urlpatterns = patterns(*urlpatterns)
if
settings
.
DEBUG
:
urlpatterns
+=
static
(
settings
.
STATIC_URL
,
document_root
=
settings
.
STATIC_ROOT
)
# in debug mode, allow any template to be rendered (most useful for UX reference templates)
urlpatterns
+=
url
(
r'^template/(?P<template>.+)$'
,
'debug.views.show_reference_template'
),
#Custom error pages
handler404
=
'static_template_view.views.render_404'
handler500
=
'static_template_view.views.render_500'
...
...
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