in public/js/components/AtomEdit/CustomEditors/CommonsDivisionEditor.js [17:40]
renderDetails(details) {
return (
<div>
<div>
<b>Date of vote: </b>
<span>{moment(details.date).format("DD/MM/YYYY")}</span>
</div>
<div>
<table className={"divisions-table"}>
<tbody>
<tr>
<th>Ayes</th>
<th>Noes</th>
</tr>
<tr>
<td>{details.votes.ayes.length}</td>
<td>{details.votes.noes.length}</td>
</tr>
</tbody>
</table>
</div>
</div>
);
}