Add metadata row to contributor list

Contains links to Ethereum address and IPFS content.
This commit is contained in:
2017-02-19 10:30:56 +08:00
parent e7fa188797
commit 0a2f44cec8
3 changed files with 71 additions and 8 deletions
@@ -10,5 +10,17 @@
<span class="symbol">₭S</span>
</td>
</tr>
<tr class="metadata visible {{if contributor.isCurrentUser 'current-user'}}">
<td colspan="2">
<dl>
<dt>Ethereum address</dt>
<dd><a href="https://testnet.etherscan.io/address/{{contributor.address}}">{{contributor.address}}</a></dd>
{{#if contributor.ipfsHash}}
<dt>IPFS profile data</dt>
<dd><a href="https://ipfs.io/ipfs/{{contributor.ipfsHash}}">{{contributor.ipfsHash}}</a></dd>
{{/if}}
</dl>
</td>
</tr>
{{/each}}
</tbody>