{% block first %}
{% endblock %}
|
{{ list.item.difficulty.0.tag }} |
{% for task_type in list.item.task_type %}
{{ task_type.tag }}{% if not forloop.last %}, {% endif %}
{% endfor %}
|
{{ list.item.time_to_complete }} hrs |
{{ list.item.status }} |
{% if list.info.mentors %}
{% for mentor in list.info.mentors|slice:":2" %}
{{ mentor.name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% if list.info.extramentors %}
+ {{ list.info.extramentors }}
{% endif %}
{% else %}
Not Assigned
{% endif %}
|