{% extends "base.html" %} {% block title %}Material del bootcamp — {{ nombre }}{% endblock %} {% block content %}

Hola {{ nombre }}

Acá tienes todo el material del bootcamp.

{% for d in downloads %}
{% if d.icon == 'code' %} {% elif d.icon == 'book' %} {% else %} {% endif %}

{{ d.title }}

{{ d.description }}

{% if d.available %}{{ d.size_mb }} MB{% else %}Próximamente{% endif %}

{% if d.available %} Descargar {% else %} No disponible {% endif %}
{% endfor %}
{% endblock %}