28 lines
768 B
HTML
28 lines
768 B
HTML
{% extends "templates/base.html" %}
|
|
{% block title %}Batch{% endblock %}
|
|
{% block head_include %}
|
|
<meta name="description" content="Courses" />
|
|
<meta name="keywords" content="" />
|
|
|
|
<link rel="stylesheet" href="/assets/frappe/css/font-awesome.css">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-5">
|
|
{{ widgets.BatchTabs(course=course, batch=batch) }}
|
|
<h1 class="mt-5">{{ batch.title }}</h1>
|
|
<div class="course-details">
|
|
{{ widgets.CourseOutline(course=course, batch=batch, show_link=True) }}
|
|
</div>
|
|
<div class="w-25">
|
|
<h2>Batch Schedule</h2>
|
|
{{ widgets.RenderBatch(batch=batch) }}
|
|
</div>
|
|
{% if batch.description %}
|
|
<h2>Batch Details</h2>
|
|
{{ frappe.utils.md_to_html(batch.description) }}
|
|
{% endif %}
|
|
|
|
</div>
|
|
{% endblock %}
|