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.
17 lines
530 B
HTML
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>
|