{% extends "base.html" %} {% block content %}
Track quotations, engineer activity, and performance metrics
| Engineer | Quotations | Total Value | Average Value |
|---|---|---|---|
| {{ engineer }} | {{ data.count }} | {{ "%.2f"|format(data.total_value) }} | {{ "%.2f"|format(data.total_value / data.count if data.count > 0 else 0) }} |
| No activity found for the selected period | |||