From 1e10fc43f4eadd0d5a6fc2daf4483474753889fa Mon Sep 17 00:00:00 2001 From: scmmishra Date: Thu, 18 Oct 2018 15:44:08 +0530 Subject: [PATCH] LMS: Fixed views for article and video --- erpnext/www/lms/course.html | 6 ++++++ erpnext/www/lms/program.html | 5 ----- erpnext/www/lms/templates/includes/article.html | 17 +++++++++++++++++ erpnext/www/lms/templates/includes/quiz.html | 9 +++------ erpnext/www/lms/templates/includes/video.html | 17 +++++++++++++++++ 5 files changed, 43 insertions(+), 11 deletions(-) diff --git a/erpnext/www/lms/course.html b/erpnext/www/lms/course.html index 9896b017aa3..bd2d6b80806 100644 --- a/erpnext/www/lms/course.html +++ b/erpnext/www/lms/course.html @@ -1,6 +1,7 @@ {% extends "frappe_theme/templates/base.html" %} {% block title %}ERPNext Academy{% endblock %} {% from "templates/includes/media.html" import media %} +<<<<<<< HEAD {% block head_include %} @@ -10,6 +11,11 @@ {% with content = current_content, next_content = next_content, course_name = course_name, program_name = program_name %} {% include "www/lms/templates/includes/" + content_type.lower() + ".html" %} {% endwith %} +======= +{% block content %} +
+{% include "www/lms/templates/includes/" + content_type.lower() + ".html" %} +>>>>>>> LMS: Fixed views for article and video