%PDF- %PDF-
| Direktori : /data/old/home/stash/stash/atlassian-stash/static/widget/aui/table/ |
| Current File : //data/old/home/stash/stash/atlassian-stash/static/widget/aui/table/table.soy |
{namespace widget.aui}
/**
* @param? id
* @param? extraClasses
* @param? theadId
* @param? tfootId
* @param? tbodyId
* @param? content
* @param? theadContent
* @param? tfootContent
* @param? dataAttributes
* @param? captionContent
*/
{template .table}
<table class="aui{if $extraClasses} {$extraClasses}{/if}" {if $id}id="{$id}"{/if}
{if $dataAttributes}{call stash.util.dataAttributes}
{param data: $dataAttributes/}
{/call}{/if}>
{if $captionContent}
<caption>{$captionContent|noAutoescape}</caption>
{/if}
{if $theadContent}
<thead {if $theadId}id="{$theadId}"{/if}>{$theadContent |noAutoescape}</thead>
{/if}
{if $tfootContent}
<tfoot {if $tfootId}id="{$tfootId}"{/if}>{$tfootContent |noAutoescape}</tfoot>
{/if}
<tbody {if $tbodyId}id="{$tbodyId}"{/if}>
{if $content}{$content |noAutoescape}{/if}
</tbody>
</table>
{/template}