01.
<c:forEach var=
"list"
items=
"${timesheet}"
>
02.
<c:forEach var=
"i"
begin=
"1"
end=
"${count_day}"
step=
"1"
>
03.
<fmt:formatDate pattern=
"MMMM yyyy"
value=
"${now}"
var=
"formatdate"
/>
04.
<tr>
05.
<td><c:out value=
"${i}"
></c:out> <c:out
06.
value=
"${formatdate}"
></c:out></td>
07.
<td><input type=
"text"
value=
"${list.description}"
class
=
"form-control"
></td>
08.
<td><input type=
"text"
value=
"${list.time_check_in}"
class
=
"form-control"
> </td>
09.
<td><input type=
"text"
value=
"${list.time_check_out}"
class
=
"form-control"
> </td>
10.
<td><button type=
"submit"
class
=
"btn btn-success"
>Save</button> </td>
11.
<td><button type=
"reset"
class
=
"btn btn-info"
>Reset</button></td>
12.
</tr>
13.
/c:forEach>
14.
</c:forEach>