Full workspace tools are on desktop. Mobile shows your projects โ tap to view details and pitch portals.
Open full workspace โ
{% set groups = [
('funded', '๐ฌ Now in Production', '#d4a017'),
('live', 'Live', '#3fb950'),
('pitching', 'Pitching', '#c4922a'),
('in_development','In Development','#c55629'),
('draft', 'Draft', '#7a6a5a'),
] %}
{% for group_status, group_label, group_color in groups %}
{% set ns = namespace(found=false) %}
{% for p in projects %}
{% if (p.portal_status or 'draft') == group_status %}
{% set ns.found = true %}
{% endif %}
{% endfor %}
{% if ns.found %}
{{ group_label }}
{% set cnt = namespace(n=0) %}
{% for p in projects %}{% if (p.portal_status or 'draft') == group_status %}{% set cnt.n = cnt.n + 1 %}{% endif %}{% endfor %}
ยท {{ cnt.n }}
{% for p in projects %}
{% if (p.portal_status or 'draft') == group_status %}
{% set _href = '/project/' ~ p.id ~ '/production' if group_status == 'funded' else '/workspace?project=' ~ p.id %}
{% if p.cover_image_url or p.poster_url %}
{% else %}