Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92960004
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
Mon, Nov 25, 04:11
Size
1 KB
Mime Type
text/html
Expires
Wed, Nov 27, 04:11 (2 d)
Engine
blob
Format
Raw Data
Handle
22547942
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">
<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