{% extends "layouts/base.html" %} {% block main_content %} {% set breadcrumbs = [ {"name": t('nav.home'), "url": "/", "icon": "fas fa-home"}, {"name": t('nav.projects'), "icon": "fas fa-folder-open"} ] %} {% set header_title = t('nav.projects') %} {% set header_subtitle = t('projects.title') %} {% set header_icon = "fas fa-folder-open" %} {% set header_actions = [ { "type": "button", "text": t('projects.new'), "url": "/projects/new", "icon": "fas fa-plus", "style": "primary" }, { "type": "dropdown", "text": t('common.actions'), "icon": "fas fa-ellipsis-v", "style": "secondary", "items": [ {"text": t('common.import'), "url": "/projects/import", "icon": "fas fa-upload"}, {"text": t('common.export'), "url": "/projects/export", "icon": "fas fa-download"}, {"text": t('nav.settings'), "url": "/settings", "icon": "fas fa-cog"} ] } ] %} {% include "components/page_header.html" %}
{{ project.name }}
{{ project.description or t('projects.no_description') }}
{{ t('projects.showing_results', count_start=1, count_end=projects|length, total=projects|length) }}
{{ t('projects.get_started_message') }}
{{ t('projects.create_first') }}