EN · DE · RU · FR · ES

#3003: MonthlyEmployeeReportPage.html

projectforge-wicket/src/main/java/org/projectforge/web/fibu/MonthlyEmployeeReportPage.html HTML template, projectforge-wicket/src/main/java/org/projectforge/web/fibu/MonthlyEmployeeReportPage.html 32 lines · 31 code · 0 comments · 1 blank
Purpose: Source file: projectforge/web/fibu/MonthlyEmployeeReportPage.html. MonthlyEmployeeReportPage.html is part of the ProjectForge open-source project management application.

Source (first 100 lines)

<html lang="en" xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>

<body>
  <wicket:extend>
    <wicket:container wicket:id="fields">[fields]</wicket:container>
    <table class="dataview" wicket:id="table">
      <thead>
        <tr class="headers">
          <th wicket:id="headcolRepeater">[cost 2, customer, project, cost 2 type]</th>
          <th wicket:id="headcolWeekRepeater" style="white-space: nowrap;">[01.-05.]</th>
          <th><wicket:message key="sum" /></th>
          <th wicket:id="timeSavedByAI" style="color: purple; white-space: nowrap;">Time saved by AI</th>
        </tr>
      </thead>
      <tbody>
        <tr wicket:id="rowRepeater">
          <td wicket:id="cost2"><a wicket:id="link"><span wicket:id="label">[5.010.00.00]</span></a></td>
          <td wicket:id="customer">[kunde]</td>
          <td wicket:id="project">[projekt]</td>
          <td wicket:id="costType"><span wicket:id="content">[kost art]</span></td>
          <td wicket:id="colWeekRepeater" style="text-align: right;">[1.50]</td>
          <td wicket:id="sum" style="font-weight: bold; text-align: right;">[10.75]</td>
          <td wicket:id="aiTimeSavings" style="color: purple; text-align: right;">[10.75]</td>
        </tr>
      </tbody>
    </table>
  </wicket:extend>
</body>
</html>

Git History

9ce9f3f83 WIP: time savings by AI
2ec065b52 WIP: time savings by AI: TimesheetListPage, MonthlyEmployeeReport
9ebb88522 Initial commit

9ce9f3f83

WIP: time savings by AI
9ce9f3f837f19a43ae7c2071953a68ea25e28103
diff --git a/projectforge-wicket/src/main/java/org/projectforge/web/fibu/MonthlyEmployeeReportPage.html b/projectforge-wicket/src/main/java/org/projectforge/web/fibu/MonthlyEmployeeReportPage.html
index 623efb8f3..920fdb80b 100644
--- a/projectforge-wicket/src/main/java/org/projectforge/web/fibu/MonthlyEmployeeReportPage.html
+++ b/projectforge-wicket/src/main/java/org/projectforge/web/fibu/MonthlyEmployeeReportPage.html
@@ -12,7 +12,7 @@
           <th wicket:id="headcolRepeater">[cost 2, customer, project, cost 2 type]</th>
           <th wicket:id="headcolWeekRepeater" style="white-space: nowrap;">[01.-05.]</th>
           <th><wicket:message key="sum" /></th>
-          <th wicket:id="timeSavedByAI" style="white-space: nowrap;">Time saved by AI</th>
+          <th wicket:id="timeSavedByAI" style="color: purple; white-space: nowrap;">Time saved by AI</th>
         </tr>
       </thead>
       <tbody>
@@ -23,7 +23,7 @@
           <td wicket:id="costType"><span wicket:id="content">[kost art]</span></td>
           <td wicket:id="colWeekRepeater" style="text-align: right;">[1.50]</td>
           <td wicket:id="sum" style="font-weight: bold; text-align: right;">[10.75]</td>
-          <td wicket:id="aiTimeSavings" style="font-weight: bold; text-align: right;">[10.75]</td>
+          <td wicket:id="aiTimeSavings" style="color: purple; text-align: right;">[10.75]</td>
         </tr>
       </tbody>
     </table>

2ec065b52

WIP: time savings by AI: TimesheetListPage, MonthlyEmployeeReport
2ec065b52c3ea57ba27acffb0b2fa124cc249084
diff --git a/projectforge-wicket/src/main/java/org/projectforge/web/fibu/MonthlyEmployeeReportPage.html b/projectforge-wicket/src/main/java/org/projectforge/web/fibu/MonthlyEmployeeReportPage.html
index 5d13c3fb6..623efb8f3 100644
--- a/projectforge-wicket/src/main/java/org/projectforge/web/fibu/MonthlyEmployeeReportPage.html
+++ b/projectforge-wicket/src/main/java/org/projectforge/web/fibu/MonthlyEmployeeReportPage.html
@@ -12,6 +12,7 @@
           <th wicket:id="headcolRepeater">[cost 2, customer, project, cost 2 type]</th>
           <th wicket:id="headcolWeekRepeater" style="white-space: nowrap;">[01.-05.]</th>
           <th><wicket:message key="sum" /></th>
+          <th wicket:id="timeSavedByAI" style="white-space: nowrap;">Time saved by AI</th>
         </tr>
       </thead>
       <tbody>
@@ -22,9 +23,10 @@
           <td wicket:id="costType"><span wicket:id="content">[kost art]</span></td>
           <td wicket:id="colWeekRepeater" style="text-align: right;">[1.50]</td>
           <td wicket:id="sum" style="font-weight: bold; text-align: right;">[10.75]</td>
+          <td wicket:id="aiTimeSavings" style="font-weight: bold; text-align: right;">[10.75]</td>
         </tr>
       </tbody>
     </table>
   </wicket:extend>
 </body>
-</html>
\ No newline at end of file
+</html>

9ebb88522

Initial commit