From 8968f4c85194ef1d51b91280b82ba7d9e78ac9ee Mon Sep 17 00:00:00 2001 From: Zain Virk Date: Fri, 26 May 2023 19:46:26 +0500 Subject: [PATCH] removed extra file public_video_share_embed.html --- lms/templates/public_video_share_embed.html | 129 -------------------- 1 file changed, 129 deletions(-) delete mode 100644 lms/templates/public_video_share_embed.html diff --git a/lms/templates/public_video_share_embed.html b/lms/templates/public_video_share_embed.html deleted file mode 100644 index cb81c7e15cce..000000000000 --- a/lms/templates/public_video_share_embed.html +++ /dev/null @@ -1,129 +0,0 @@ -## coding=utf-8 - -<%page expression_filter="h"/> -<%! main_css = "style-main-v1" %> - -<%namespace name='static' file='static_content.html'/> -<%! -import six -from lms.djangoapps.branding import api as branding_api -from django.utils.translation import gettext as _ -from django.utils.translation import get_language_bidi -from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers -from openedx.core.djangolib.js_utils import js_escaped_string -from openedx.core.release import RELEASE_LINE -from openedx.core.djangolib.markup import HTML -%> - -<%def name="course_name()"> - <% return _("{course_number} Courseware").format(course_number=course.display_number_with_default) %> - - - - - - - - - - - <%def name="pagetitle()" /> - ${static.get_page_title_breadcrumbs(course_name())} - - <% - jsi18n_path = "js/i18n/{language}/djangojs.js".format(language=LANGUAGE_CODE) - ie11_fix_path = "js/ie11_find_array.js" - %> - - - <% favicon_url = branding_api.get_favicon_url() %> - - - <%static:css group='style-vendor'/> - % if '/' in self.attr.main_css: - % if get_language_bidi(): - <% - rtl_css_file = self.attr.main_css.replace('.css', '-rtl.css') - %> - - % else: - - % endif - % else: - <%static:css group='${self.attr.main_css}'/> - % endif - - <%static:js group='main_vendor'/> - <%static:js group='application'/> - - <%static:webpack entry="commons"/> - - <%static:css group='style-course-vendor'/> - <%static:css group='style-course'/> - - <%include file="widgets/segment-io.html" /> - - - <% google_site_verification_id = configuration_helpers.get_value('GOOGLE_SITE_VERIFICATION_ID', settings.GOOGLE_SITE_VERIFICATION_ID) %> - % if google_site_verification_id: - - % endif - - - -<% ga_acct = static.get_value("GOOGLE_ANALYTICS_ACCOUNT", settings.GOOGLE_ANALYTICS_ACCOUNT) %> -% if ga_acct: - -% endif - -<% ga_4_id = static.get_value("GOOGLE_ANALYTICS_4_ID", settings.GOOGLE_ANALYTICS_4_ID) %> -% if ga_4_id: - - -% endif - -<% branch_key = static.get_value("BRANCH_IO_KEY", settings.BRANCH_IO_KEY) %> -% if branch_key and not is_from_mobile_app: - -% endif - - - - - -
- ${HTML(fragment.body_html())} -
- - <%static:js group='courseware'/> - ${HTML(fragment.foot_html())} - -