mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
49 lines
1.5 KiB
Django/Jinja
49 lines
1.5 KiB
Django/Jinja
<!-- HTML to allow the user to export the current querey results in full or
|
|
the selected sub results.-->
|
|
|
|
<div class="col s12 m2 l2" id="export">
|
|
<h6 style="margin-top: 0px;">Export</h6>
|
|
<div class="divider" style="margin-bottom: 10px;"></div>
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<button class="waves-effect
|
|
waves-light
|
|
btn-flat
|
|
disabled
|
|
flat-interaction"
|
|
type="submit"
|
|
id="full-results-create">Create Results
|
|
<i class="material-icons left">build</i>
|
|
</button>
|
|
<button id="full-results-export"
|
|
class="waves-effect
|
|
waves-light
|
|
btn-flat
|
|
hide
|
|
flat-interaction"
|
|
type="submit">Results
|
|
<i class="material-icons left">file_download</i>
|
|
</button>
|
|
</div>
|
|
<div class="col s12">
|
|
<button class="waves-effect
|
|
waves-light
|
|
btn-flat
|
|
disabled
|
|
flat-interaction"
|
|
type="submit"
|
|
id="sub-results-create">Create Sub-Results
|
|
<i class="material-icons left">build</i>
|
|
</button>
|
|
<button id="sub-results-export"
|
|
class="waves-effect
|
|
waves-light
|
|
btn-flat
|
|
hide
|
|
flat-interaction"
|
|
type="submit">Sub-Results
|
|
<i class="material-icons left">file_download</i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div> |