{% if curso.type == 'card-curso-em-breve' %}
Em breve
{% elif curso.type == 'card-curso-aberto' %}
Inscrições abertas
{% elif curso.type == 'card-curso-andamento' %}
Em andamento
{% elif curso.type == 'card-curso-encerrado' %}
Encerrado
{% endif %}
{{ curso.title }}
{{ curso.description|truncatewords:20 }}
{% if curso.carga_horaria and curso.carga_horaria != 'Não informado' %}
Carga-horária: {{ curso.carga_horaria }}
{% endif %}
{% if curso.modalidade %}
{% if curso.modalidade == 'presencial' %}
{% elif curso.modalidade == 'online' %}
{% elif curso.modalidade == 'hibrido' %}
{% endif %}
{{ curso.modalidade|title }}
{% endif %}