{% extends "base.html" %}
{% block title %}Business Twin{% endblock %}
{% block page_title %}Digital Business Twin{% endblock %}
{% block content %}
Business Summary
| Company | {{ company.company_name if company else 'Not Set' }} |
| Industry | {{ company.industry if company else 'Not Set' }} |
| Type | {{ company.business_type if company else 'Not Set' }} |
| Size | {{ company.company_size if company else 'Not Set' }} |
| Employees | {{ employees }} |
| Customers | {{ customers }} |
| Suppliers | {{ suppliers }} |
| Departments | {{ departments|length }} |
| SKUs | {{ inventory_items }} |
{% endblock %}