Files
edx-platform/cms/templates/dev/dev_mode.html
David Baumgold 64ad5567f3 Create urls/views/templates for dev-only views
Our designers find it helpful to be able to stub out simple views that aren't ready
to be seen for production yet, and check them into version control so that other
people can see them and provide feedback. This commit introduces a few new files
and directories for this purpose, as well as a sample view that will only be seen
in dev mode, and never in production.
2013-07-31 17:20:26 -04:00

5 lines
87 B
HTML

<%inherit file="../base.html" />
<%block name="content">
You're in dev mode!
</%block>