{% extends "templates/base.html" %} {% block title %}Profile{% endblock %} {% from "www/lms/macros/hero.html" import hero %} {% block head_include %} {% endblock %} {% macro card(program) %}
{% endmacro %} {% block content %}

{{ student.first_name }} {{ student.last_name or '' }}

{{ student.name }}

{% for program in progress %} {{ card(program) }} {% endfor %}
{% endblock %}