Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114422206
export.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, May 25, 19:17
Size
1 KB
Mime Type
text/html
Expires
Tue, May 27, 19:17 (2 d)
Engine
blob
Format
Raw Data
Handle
26396612
Attached To
R7177 epiph
export.html
View Options
<template name="export">
<div id="export">
<div class="row">
<div class="col-md-3 treeCol">
<div id="tree"></div>
</div>
<div class="col-md-9 contentCol">
<button id="downloadCSV" class="btn btn-primary" disabled={{waitingForDownload}}>
Download CSV
{{#if waitingForDownload}}
<i class="fa fa-spinner fa-spin"></i>
{{else}}
<i class="fa fa-download"></i>
{{/if}}
</button>
<br>
<h3>Table columns</h3>
<table id="table" class="table">
{{#each columnHeaders}}
<tr>
<th>{{title}}</th>
</tr>
{{/each}}
</table>
<!--
<table id="table" class="table">
<tr>
{{#each columnHeaders}}
<th>{{title}}</th>
{{/each}}
</tr>
{{#each rows}}
<tr>
{{#each columns}}
<td>{{this}}</td>
{{/each}}
</tr>
{{/each}}
</table>
-->
</div>
</div>
</div>
</template>
Event Timeline
Log In to Comment