Files
edx-platform/cms/templates/program_authoring.html
Renzo Lucioni e2833d8fc6 Add a Studio view and template to host the Programs authoring app
The Programs authoring app is a Backbone SPA maintained in a separate repository. The app handles its own routing and provides a UI which can be used to create and publish new Programs (e.g, XSeries). ECOM-2598.
2015-12-03 10:47:12 -05:00

17 lines
530 B
HTML

<%! from django.utils.translation import ugettext as _ %>
<%inherit file="base.html" />
<%block name="title">${_("Program Administration")}</%block>
<%block name="header_extras">
<link rel="stylesheet" href=${authoring_app_config.css_url}>
</%block>
<%block name="requirejs">
require(['${authoring_app_config.js_url}'], function () {});
</%block>
<%block name="content">
<div class="js-program-admin program-app layout-1q3q layout-reversed" data-api-url=${programs_api_url} data-home-url=${studio_home_url}></div>
</%block>