Commit b9d9081047e678055a050b627cfeaf0812e1026f
1 parent
11b5b6f8
Exists in
master
and in
4 other branches
Tweak charges table headers
Showing
4 changed files
with
6 additions
and
5 deletions
Show diff stats
app/db_mgr.py
@@ -68,7 +68,7 @@ def charges_by_project(project_id): | @@ -68,7 +68,7 @@ def charges_by_project(project_id): | ||
68 | for line in results: | 68 | for line in results: |
69 | nocomma_line = [str(cell) for cell in line] | 69 | nocomma_line = [str(cell) for cell in line] |
70 | nocomma_results.append(nocomma_line) | 70 | nocomma_results.append(nocomma_line) |
71 | - headers = ["Period", "Agent", "Service", "Capacity", "Charge"] | 71 | + headers = ["Periode", "Agent", "Service", "Fonction", "Charge"] |
72 | nocomma_results.insert(0, headers) | 72 | nocomma_results.insert(0, headers) |
73 | return nocomma_results | 73 | return nocomma_results |
74 | 74 | ||
@@ -101,7 +101,7 @@ def charges_by_agent_tabled(agent_id): | @@ -101,7 +101,7 @@ def charges_by_agent_tabled(agent_id): | ||
101 | for line in results: | 101 | for line in results: |
102 | nocomma_line = [str(cell) for cell in line] | 102 | nocomma_line = [str(cell) for cell in line] |
103 | nocomma_results.append(nocomma_line) | 103 | nocomma_results.append(nocomma_line) |
104 | - headers = ["Period", "Project", "Service", "Capacity", "Charge"] | 104 | + headers = ["Periode", "Projet", "Service", "Fonction", "Charge"] |
105 | nocomma_results.insert(0, headers) | 105 | nocomma_results.insert(0, headers) |
106 | return nocomma_results | 106 | return nocomma_results |
107 | 107 |
app/main/static/css/charges.css
app/main/templates/agent.html
app/main/templates/project.html