{% extends "base.html" %} {% from "components/ui.html" import page_header, stat_card %} {% block content %} {% set breadcrumbs = [ {'text': 'Issues'} ] %} {{ page_header( icon_class='fas fa-bug', title_text='Issues', subtitle_text='Manage client-reported issues and bugs', breadcrumbs=breadcrumbs ) }}
| {{ _('Title') }} | {{ _('Client') }} | {{ _('Project') }} | {{ _('Status') }} | {{ _('Priority') }} | {{ _('Assigned To') }} | {{ _('Created') }} | {{ _('Actions') }} |
|---|---|---|---|---|---|---|---|
| {{ issue.title }} | {{ issue.client.name }} | {{ issue.project.name if issue.project else '-' }} | {{ issue.status_display }} | {{ issue.priority_display }} | {{ issue.assigned_user.display_name if issue.assigned_user else '-' }} | {{ issue.created_at.strftime('%Y-%m-%d') }} | {{ _('View') }} |
{{ _('No issues found.') }}
{% endif %}