20 lines
437 B
HTML
20 lines
437 B
HTML
{% extends "templates/base.html" %}
|
|
{% block title %}Schedule{% 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>
|
|
{{ widgetsBatchTabs(course=course, batch=batch) }}
|
|
<div class="container">
|
|
<h3>
|
|
Schedule
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|