fix: controls script loading

This commit is contained in:
Jannat Patel
2022-09-16 11:37:11 +05:30
parent 47b9b1dcd6
commit f7ba72217b
2 changed files with 2 additions and 9 deletions

View File

@@ -21,7 +21,7 @@ app_license = "AGPL"
# include js, css files in header of web template
web_include_css = "lms.bundle.css"
# web_include_css = "/assets/lms/css/lms.css"
web_include_js = "website.bundle.js"
web_include_js = ["website.bundle.js", "controls.bundle.js"]
# include custom scss in every website theme (without file extension ".scss")
# website_theme_scss = "lms/public/scss/website"

View File

@@ -6,7 +6,6 @@
{% block head_include %}
{% include "public/icons/symbol-defs.svg" %}
<link rel="stylesheet" href="/assets/frappe/css/font-awesome.css">
{% endblock %}
@@ -22,7 +21,7 @@
{{ Description(course) }}
{{ Save(course) }}
{{ widgets.CourseOutline(course=course, membership=membership, is_user_interested=is_user_interested) }}
{% if not course.edit_mode and course.staus == "Approved" and not course.upcoming %}
{% if not course.edit_mode and course.status == "Approved" and not frappe.utils.cint(course.upcoming) %}
{{ widgets.Reviews(course=course, membership=membership) }}
{% endif %}
</div>
@@ -423,9 +422,3 @@
</div>
</div>
{% endmacro %}
{% block base_scripts %}
{{ include_script("frappe-web.bundle.js") }}
{{ include_script('controls.bundle.js') }}
{% endblock %}