2021-03-31 05:43:06 +08:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
height: 95px;
|
|
|
|
}
|
2021-03-30 19:40:36 +08:00
|
|
|
|
2021-03-31 05:43:06 +08:00
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
height: 80px;
|
|
|
|
table-layout: fixed;
|
|
|
|
width: 100%
|
|
|
|
}
|
2021-03-30 19:40:36 +08:00
|
|
|
|
2021-03-31 05:43:06 +08:00
|
|
|
table td {
|
|
|
|
border: 2px solid black;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: .25em;
|
|
|
|
text-align: left;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2021-03-30 19:40:36 +08:00
|
|
|
|
2021-03-31 05:43:06 +08:00
|
|
|
table td.pagination {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2021-03-30 19:40:36 +08:00
|
|
|
|
2021-03-31 05:43:06 +08:00
|
|
|
.info-row {
|
|
|
|
height: 15px;
|
|
|
|
}
|
2021-03-30 19:40:36 +08:00
|
|
|
|
2021-03-31 05:43:06 +08:00
|
|
|
.info-row td {
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td colspan=3>
|
|
|
|
<div class="cell-label">
|
|
|
|
<b>ANALYST(S)</b>
|
|
|
|
</div>
|
|
|
|
<div class="cell-value">
|
2021-04-19 16:17:44 +08:00
|
|
|
<%= render Reports::ProjectMembersInputComponent.new(report: report, name: :analyst, label: 'Analyst', editing: false) %>
|
2021-03-31 05:43:06 +08:00
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td colspan=2>
|
|
|
|
<div class="cell-label">
|
|
|
|
<b>ANALYST EMPLOYEE NO.</b>
|
|
|
|
</div>
|
|
|
|
<div class="cell-value">
|
2021-04-19 16:17:44 +08:00
|
|
|
<%= render Reports::ProjectMembersInputComponent.new(report: report, name: :analyst_number, label: 'Employee number', editing: false, displayed_field: :external_id) %>
|
2021-03-31 05:43:06 +08:00
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td colspan=3>
|
|
|
|
<div class="cell-label">
|
|
|
|
<b>CHECKED BY:</b>
|
|
|
|
</div>
|
|
|
|
<div class="cell-value">
|
2021-04-19 16:17:44 +08:00
|
|
|
<%= render Reports::ProjectMembersInputComponent.new(report: report, name: :checked_by, label: 'Checked by', editing: false) %>
|
2021-03-31 05:43:06 +08:00
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td colspan=2 class="pagination">
|
|
|
|
PAGE <span class="page"></span> OF <span class="topage"></span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="info-row">
|
|
|
|
<td colspan="10">Single-Sided</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|