{% import "entry_macros.html" as macros %}
{% set title = "Data Processing" %} {% set navigation = [('Data Processing', '')] %} {% include 'include_header.html' %} {% set is_manager = current_user.is_manager %} {{ macros.hidden_hour_id() }} {% for project in project_list %}

{{ project['title'] }}

{% for entry in project['entries'] %} {% set card_color='#ebf7f9' %} {# {% set card_color='#ececec' %} #}
{% set url = url_for_content('processing_flowchart', entry_id=entry['id']) %}
{{ entry['name'] }}
{#
{{ entry['name'] }}
#}

Path: {{ entry['project_path'] }}

{% endfor %}
{% endfor %}