You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
507 B

<style>
table.pm-pinned-detail-table tr {
border: none;
padding: 2px;
}
table.pm-pinned-detail-table th {
font-weight: normal;
color: #888888;
text-align: left;
}
table.pm-pinned-detail-table td {
font-weight: normal;
color: #000000;
text-align: left;
}
</style>
<table class="pm-pinned-detail-table">
<tbody>
<% _.each(data.fields, function(field, index) {%>
<tr>
<th>
<%= field %>
</th>
<td>
<%= data.data[index] %>
</td>
</tr>
<% }); %>
</tbody>
</table>