{% set title = "Projects List" %}
{% set navigation = [('Projects', '')] %}
{% include 'include_header.html' %}
{% set is_admin = current_user.is_admin %}
{% set is_manager = current_user.is_manager %}
{% for p in projects %}
{% set status = p['status'] %}
{% if is_manager or status != 'disabled' %}
{% set badge_type = 'success' if status == 'active' else 'light' %}
{% set color = 'black' if status == 'active' else 'gray' %}
{% set badge_type = 'success' if status == 'active' else 'light' %}
{# if status == 'disabled' else 'info') %}#}
Project {{ p.id }}