brotherton-erpnext/erpnext/www/lms/course.html
scmmishra 836a4b5e54 lms: add activity child table and create frontend
Co-authored-by: Chinmay Pai <chinmaydpai@gmail.com>
2019-02-19 13:05:23 +05:30

63 lines
2.3 KiB
HTML

{% extends "frappe_theme/templates/base.html" %}
{% block title %}ERPNext Academy{% endblock %}
{% from "templates/includes/media.html" import media %}
{% block head_include %}
<meta name="description" content="ERPNext Academy is a learnig platform to gain expertise in the world's top 100% open source ERP software." />
<meta name="keywords" content="ERP Software, Cloud ERP, Open Source ERP, Accounting Software, Online ERP, Online Accounting, ERP for small business, Learn ERP, ERPNext Academy, Learn ERPNext, Learn Accounting" />
{% endblock %}
{% macro video(id) %}
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/{{ lesson.video_url }}" allowfullscreen></iframe>
</div>
{% endmacro %}
{% block content %}
<section class='video-top-section video-section-bg'>
<div class='container'>
{% if lesson.video_url is defined %}
{{ video("lesson,video") }}
{% endif %}
<div class="mt-3 row">
<div class="col-md-8">
<h2>{{ lesson.name }}</h2>
<span class="text-muted">
<i class="octicon octicon-clock" title="Duration"></i> 49 Mins
&mdash; Published on 28th October 2018.
</span>
</div>
<div class="col-md-4 text-right">
<a class='btn btn-outline-secondary' href="/classrooms/module">Previous</a>
<a class='btn btn-primary' href="/learn?module={{ module }}&lesson={{ next_lesson }}">Next</a>
</div>
</div>
<hr>
</div>
</section>
{% for lesson in lesson_list %}
{{ lesson }}
{% endfor %}
<section class="video-description-section">
<div class='container'>
<div class="content">
{{ lesson.content }}
</div>
<div class="text-right hidden">
<a class='btn btn-outline-secondary' href="/classrooms/module">Previous</a>
<a class='btn btn-primary' href="/classrooms/module">Next</a>
</div>
<div class="mt-3 text-right">
<a class="text-muted" href="/report"><i class="octicon octicon-issue-opened" title="Report"></i> Report a Mistake</a>
</div>
</div>
</section>
<style>
.footer-message {
display: none;
}
</style>
{% endblock %}