Skip to content

Commit 5d712d1

Browse files
committed
Add quantidade de funções de transação no dashboard #33
1 parent 10d7ef6 commit 5d712d1

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/main/resources/templates/dashboard.html

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,17 @@
3535
<tr>
3636
<th>ID</th>
3737
<th>Nome</th>
38+
<th>
39+
<span id="th-us" data-placement="top" data-toggle="tooltip"
40+
data-original-title="User Stories">Nº US</span>
41+
</th>
3842
<th>
3943
<span id="th-df" data-placement="top" data-toggle="tooltip"
4044
data-original-title="Funções de Dados">Nº DF</span>
4145
</th>
4246
<th>
43-
<span id="th-us" data-placement="top" data-toggle="tooltip"
44-
data-original-title="User Stories">US</span>
47+
<span id="th-tf" data-placement="top" data-toggle="tooltip"
48+
data-original-title="Funções de Transação">TF</span>
4549
</th>
4650
<th>
4751
<span id="th-ci" data-placement="top" data-toggle="tooltip"
@@ -58,8 +62,9 @@
5862
<tr th:each="project : ${projects}">
5963
<td th:text="${project.id}"></td>
6064
<td th:text="${project.name}"></td>
61-
<td th:text="${project.dataFunctions.size()}"></td>
6265
<td th:text="${project.userStories.size()}"></td>
66+
<td th:text="${project.dataFunctions.size()}"></td>
67+
<td th:text="${project.transactionFunctions.size()}"></td>
6368
<td th:text="${icounter.calculeFunctionPoint(project)}"></td>
6469
<td th:text="${ecounter.calculeFunctionPoint(project)} + ' PF'">PF</td>
6570
<td>
@@ -91,6 +96,7 @@
9196
});
9297

9398
$('#th-df').tooltip();
99+
$('#th-tf').tooltip();
94100
$('#th-us').tooltip();
95101
$('#th-ci').tooltip();
96102
$('#th-ce').tooltip();

0 commit comments

Comments
 (0)