Commit a60abede by Andy Armstrong

Merge pull request #2524 from edx/andya/dev-show-template

Add the ability to view templates in a browser in development mode
parents e09990ff 651d1afb
...@@ -5,8 +5,24 @@ in a 404 error. ...@@ -5,8 +5,24 @@ in a 404 error.
""" """
# pylint: disable=W0613 # pylint: disable=W0613
from edxmako.shortcuts import render_to_response from edxmako.shortcuts import render_to_response
from mako.exceptions import TopLevelLookupException
from django.http import HttpResponseNotFound
def dev_mode(request): def dev_mode(request):
"Sample static view" "Sample static view"
return render_to_response("dev/dev_mode.html") return render_to_response("dev/dev_mode.html")
def dev_show_template(request, template):
"""
Shows the specified template as an HTML page.
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 {tpl}".format(tpl=template))
...@@ -7,4 +7,5 @@ from django.conf.urls import url ...@@ -7,4 +7,5 @@ from django.conf.urls import url
urlpatterns = ( urlpatterns = (
url(r'^dev_mode$', 'contentstore.views.dev.dev_mode', name='dev_mode'), url(r'^dev_mode$', 'contentstore.views.dev.dev_mode', name='dev_mode'),
url(r'^template/(?P<template>.+)$', 'contentstore.views.dev.dev_show_template'),
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment