{% extends "templates/base.html" %} {% from "www/hackathons/macros/card.html" import null_card %} {% block title %}{{ 'Courses' }}{% endblock %} {% block head_include %} {% endblock %} {% block content %}
{{ 'All Courses' }}
{% for course in courses %} {{ course_card(course) }} {% endfor %}
{% endblock %} {% macro course_card(course) %}
{% for tag in course.get_tags() %}
{{ tag }}
{% endfor %}
{% if course.get_chapters() | length %} {{ course.get_chapters() | length }} Chapters {% endif %} {% if course.get_chapters() | length and course.get_upcoming_batches() | length %} . {% endif %} {% if course.get_upcoming_batches() | length %} {{ course.get_upcoming_batches() | length }} Open Batches {% endif %}
{{ course.title }}
{{ widgets.Avatar(member=course.get_instructor(), avatar_class="avatar-small") }} {{ course.get_instructor().full_name }} {% if course.get_students() | length %} {{ course.get_students() | length }} {% endif %}
{% if course.get_membership(frappe.session.user) %} {% else %} {% endif %}
{% endmacro %} {% block script %} {% endblock %}