{% extends "base.html" %} {% from "components/ui.html" import page_header %} {% block content %} {% set breadcrumbs = [ {'text': 'Inventory', 'url': url_for('inventory.list_stock_items')}, {'text': 'Suppliers'} ] %} {{ page_header( icon_class='fas fa-truck', title_text='Suppliers', subtitle_text='Manage suppliers and vendors', breadcrumbs=breadcrumbs, actions_html='Create Supplier' if (current_user.is_admin or has_permission('manage_inventory')) else None ) }}
| {{ _('Code') }} | {{ _('Name') }} | {{ _('Contact Person') }} | {{ _('Email') }} | {{ _('Phone') }} | {{ _('Status') }} | {{ _('Actions') }} |
|---|---|---|---|---|---|---|
| {{ supplier.code }} | {{ supplier.name }} | {{ supplier.contact_person or '—' }} | {% if supplier.email %} {{ supplier.email }} {% else %} — {% endif %} | {% if supplier.phone %} {{ supplier.phone }} {% else %} — {% endif %} | {% if supplier.is_active %} {{ _('Active') }} {% else %} {{ _('Inactive') }} {% endif %} | {% if current_user.is_admin or has_permission('manage_inventory') %} {% endif %} |
| {{ _('No suppliers found.') }} | ||||||