{% for member in card.team %} {{ member }} {% endfor %}
{% for tag in card.projects %} {% assign tag_bg_strength = 100 %} {% if tag == 'Portmaster' %} {% assign tag_color = 'blue' %} {% elsif tag == 'SPN' %} {% assign tag_color = 'green' %} {% elsif tag == 'Website' %} {% assign tag_color = 'pink' %} {% elsif tag == 'Back Office' %} {% assign tag_color = 'gray' %} {% assign tag_bg_strength = 200 %} {% elsif tag == 'Community' %} {% assign tag_color = 'purple' %} {% elsif tag == 'Marketing' %} {% assign tag_color = 'orange' %} {% endif %} {{ tag }} {% endfor %}
{% if include.state == 'done' %} {% elsif include.state == 'in_progress' %} {% elsif include.state == 'discarded' %} {% elsif include.state == 'postponed' %} {% elsif include.state == 'backlog' %} {% endif %}

{{ card.title }}


Assignment

{% for paragraph in card.description %} {{ paragraph }} {% endfor %}


{% for tag in card.progress %} {% if tag.type == 'a' %} <{{ tag.type }} href='{{ tag.href }}'>{{ tag.text }} {% elsif tag.type == 'br' %}
{% elsif tag.type == 'ol' %}
    {% for li in tag.lis %}
  1. {{ li }}
  2. {% endfor %}
{% elsif tag.type == 'ul' %}
    {% for li in tag.lis %}
  • {{ li }}
  • {% endfor %}
{% else %} <{{ tag.type }}>{{ tag.text }} {% endif %} {% endfor %}