{% extends "templates/base.html" %} {% block title %} {{ _("All Classes") }} {% endblock %} {% block content %}
{{ _("Create Class") }}
{{ _("All Classes") }}
{% if classes %}
{% for class in classes %}
{{ class.title }}
{% if class.start_date %} {{ frappe.utils.format_date(class.start_date, "medium") }} - {% endif %} {% if class.end_date %} {{ frappe.utils.format_date(class.end_date, "medium") }} {% endif %}
{% endfor %}
{% else %}
{{ _("No Classes") }}
{{ _("Nothing to see here.") }}
{% endif %}
{% endblock %}