From 3ba9a023b4b5b1cf9835af2dafd3f525193b49b0 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Mon, 7 Apr 2025 16:05:37 +0200 Subject: [PATCH] feat: add team leader view --- team-leader.html | 174 +++++++++++++++++++++++++++++++++++++++++++++++ vite.config.ts | 1 + 2 files changed, 175 insertions(+) create mode 100644 team-leader.html diff --git a/team-leader.html b/team-leader.html new file mode 100644 index 0000000..d722b50 --- /dev/null +++ b/team-leader.html @@ -0,0 +1,174 @@ + + + + + + Team Leader responsabilites in the Thinking People System + + + + + + + +
+

Thinking People System

+
+
+
+
+

Is the customer satisfied?

+
+
+
+
    +
  • Security
  • +
  • Quality
  • +
  • Lead time
  • +
  • Cost
  • +
  • Environment
  • +
+
+
+
+

Just-in-time

+
    +
  • + Does the team deliver on time? +
  • +
+
+
+ + + + + + + + + +
+
+

Jidoka

+
    +
  • + Is the team focused on quality? +
  • +
+
+
+
+
+
    +
  • + Do team members continuously learn and improve on their job? +
  • +
+
+
+
    +
  • + Do team members maintain a clean and organized workspace? +
  • +
+
+
+
+
+ Enablers +

+ You can use the following options to interact with the TPS. It works + with the query string. Like so: + https://thinking-people-system.house?text=hide. +

+ +

+ Screenshot the house: + +

+
+ + + + + + + + + + + + diff --git a/vite.config.ts b/vite.config.ts index 84e04c2..5a60102 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -10,6 +10,7 @@ export default defineConfig({ input: { index: 'index.html', 'pull-system': 'pull-system.html', + 'team-leader': 'team-leader.html', '5s': '5s.html' } }