box.html
955 Bytes
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
38
39
40
41
42
43
<div class="p2p-box" {{attributes}}>
<p class="help">{{help}}</p>
{{#connections}}
<table class="p2p-connections" {{{hide}}}>
<thead>
<tr>
{{#thead}}
<th class="p2p-col-{{column}}">{{{title}}}</th>
{{/thead}}
</tr>
</thead>
<tbody>
{{#tbody}}
{{>table-row}}
{{/tbody}}
</tbody>
</table>
{{/connections}}
{{#create-connections}}
<div class="p2p-create-connections" {{{hide}}}>
<p class="p2p-toggle-tabs"><a href="#">+ {{{label}}}</a></p>
<div class="p2p-create-connections-tabs" style="display: none">
{{#show-tab-headers}}
<ul class="wp-tab-bar clearfix">
{{#tabs}}
<li {{#is-active}}class="wp-tab-active"{{/is-active}} data-ref=".p2p-tab-{{tab-id}}"><a href="#">{{{tab-title}}}</a></li>
{{/tabs}}
</ul>
{{/show-tab-headers}}
{{#tabs}}
<div class="p2p-tab-{{tab-id}} tabs-panel">
{{{tab-content}}}
</div>
{{/tabs}}
</div>
</div>
{{/create-connections}}
</div>