{% extends "client_portal/base.html" %} {% from "components/ui.html" import page_header %} {% block title %}{{ _('Documents') }} - {{ _('Client Portal') }}{% endblock %} {% block content %} {% set breadcrumbs = [ {'text': _('Client Portal'), 'url': url_for('client_portal.dashboard')}, {'text': _('Documents')} ] %} {{ page_header( icon_class='fas fa-file-alt', title_text=_('Documents'), subtitle_text=_('View and download project documents'), breadcrumbs=breadcrumbs ) }} {% if attachments %}
{{ attachment.project.name }}
{% elif hasattr(attachment, 'client') and attachment.client %}{{ _('Client Document') }}
{% endif %}{{ _('No documents have been shared with you yet. Documents will appear here once they are uploaded and made visible to clients.') }}