Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108943702
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
Sat, Apr 19, 04:58
Size
871 B
Mime Type
text/html
Expires
Mon, Apr 21, 04:58 (2 d)
Engine
blob
Format
Raw Data
Handle
25618146
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-default" disabled={{waitingForDownload}}>
Download CSV
{{#if waitingForDownload}}
<i class="fa fa-spinner fa-spin"></i>
{{else}}
<i class="fa fa-download"></i>
{{/if}}
</button>
<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