forked from sahana/eden
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_pivottable.html
37 lines (37 loc) · 1.04 KB
/
_pivottable.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<div>
<div class='table-container pt-container' {{try:}}id='{{=widget_id}}{{except:}}{{pass}}'>
<!-- Form -->
<div class='pt-form-container form-container'>
{{try:}}{{=form}}{{except:}}{{pass}}
</div>
<!-- Throbber -->
<div class="pt-throbber inline-throbber"></div>
<!-- Chart Container -->
<div class='pt-chart-container'>
<div class='pt-chart-controls'></div>
<div class='pt-chart-contents'>
<div class='pt-hide-chart'></div>
<div class='pt-chart-title'></div>
<div class='pt-chart'></div>
</div>
</div>
<!-- Table Toggle -->
<div class='pt-toggle-table pt-hide-table'>
{{try:}}{{=hide}}{{except:}}{{pass}}
</div>
<div class='pt-toggle-table pt-show-table'>
{{try:}}{{=show}}{{except:}}{{pass}}
</div>
<!-- Table Container -->
<div class='pt-table-container'>
<div class='pt-table-controls'></div>
<div class='pt-table-contents'>
<div class='pt-table'></div>
</div>
</div>
<!-- Empty-Section -->
<div class='pt-empty'>
{{try:}}{{=empty}}{{except:}}{{pass}}
</div>
</div>
</div>