Initial commit
This commit is contained in:
153
client/res/templates/record/detail.tpl
Normal file
153
client/res/templates/record/detail.tpl
Normal file
@@ -0,0 +1,153 @@
|
||||
<div class="detail" id="{{id}}" data-scope="{{scope}}" tabindex="-1">
|
||||
{{#unless buttonsDisabled}}
|
||||
<div class="detail-button-container button-container record-buttons">
|
||||
<div class="sub-container clearfix">
|
||||
<div class="btn-group actions-btn-group" role="group">
|
||||
{{#each buttonList}}
|
||||
{{button name
|
||||
scope=../entityType
|
||||
label=label
|
||||
labelTranslation=labelTranslation
|
||||
style=style
|
||||
hidden=hidden
|
||||
html=html
|
||||
title=title
|
||||
text=text
|
||||
className='btn-xs-wide detail-action-item'
|
||||
disabled=disabled
|
||||
}}
|
||||
{{/each}}
|
||||
{{#if dropdownItemList}}
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-default dropdown-toggle dropdown-item-list-button{{#if dropdownItemListEmpty}} hidden{{/if}}"
|
||||
data-toggle="dropdown"
|
||||
><span class="fas fa-ellipsis-h"></span></button>
|
||||
<ul class="dropdown-menu pull-left">
|
||||
{{#each dropdownItemList}}
|
||||
{{#if this}}
|
||||
{{dropdownItem
|
||||
name
|
||||
scope=../entityType
|
||||
label=label
|
||||
labelTranslation=labelTranslation
|
||||
html=html
|
||||
title=title
|
||||
text=text
|
||||
hidden=hidden
|
||||
disabled=disabled
|
||||
data=data
|
||||
className='detail-action-item'
|
||||
}}
|
||||
{{else}}
|
||||
{{#unless @first}}
|
||||
{{#unless @last}}
|
||||
<li class="divider"></li>
|
||||
{{/unless}}
|
||||
{{/unless}}
|
||||
{{/if}}
|
||||
{{/each}}
|
||||
</ul>
|
||||
{{/if}}
|
||||
</div>
|
||||
{{#if navigateButtonsEnabled}}
|
||||
<div class="pull-right">
|
||||
<div class="btn-group" role="group">
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-text btn-icon action {{#unless previousButtonEnabled}} disabled{{/unless}}"
|
||||
data-action="previous"
|
||||
title="{{translate 'Previous Entry'}}"
|
||||
{{#unless previousButtonEnabled}}disabled="disabled"{{/unless}}
|
||||
>
|
||||
<span class="fas fa-chevron-left"></span>
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-text btn-icon action {{#unless nextButtonEnabled}} disabled{{/unless}}"
|
||||
data-action="next"
|
||||
title="{{translate 'Next Entry'}}"
|
||||
{{#unless nextButtonEnabled}}disabled="disabled"{{/unless}}
|
||||
>
|
||||
<span class="fas fa-chevron-right"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="detail-button-container button-container edit-buttons hidden">
|
||||
<div class="sub-container clearfix">
|
||||
<div class="btn-group actions-btn-group" role="group">
|
||||
{{#each buttonEditList}}
|
||||
{{button name
|
||||
scope=../entityType
|
||||
label=label
|
||||
labelTranslation=labelTranslation
|
||||
style=style
|
||||
hidden=hidden
|
||||
html=html
|
||||
title=title
|
||||
text=text
|
||||
className='btn-xs-wide edit-action-item'
|
||||
disabled=disabled
|
||||
}}
|
||||
{{/each}}
|
||||
{{#if dropdownEditItemList}}
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-default dropdown-toggle dropdown-edit-item-list-button{{#if dropdownEditItemListEmpty}} hidden{{/if}}"
|
||||
data-toggle="dropdown"
|
||||
><span class="fas fa-ellipsis-h"></span></button>
|
||||
<ul class="dropdown-menu pull-left">
|
||||
{{#each dropdownEditItemList}}
|
||||
{{#if this}}
|
||||
{{dropdownItem
|
||||
name
|
||||
scope=../entityType
|
||||
label=label
|
||||
labelTranslation=labelTranslation
|
||||
html=html
|
||||
title=title
|
||||
text=text
|
||||
hidden=hidden
|
||||
disabled=disabled
|
||||
data=data
|
||||
className='edit-action-item'
|
||||
}}
|
||||
{{else}}
|
||||
{{#unless @first}}
|
||||
{{#unless @last}}
|
||||
<li class="divider"></li>
|
||||
{{/unless}}
|
||||
{{/unless}}
|
||||
{{/if}}
|
||||
{{/each}}
|
||||
</ul>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/unless}}
|
||||
|
||||
<div class="record-grid{{#if isWide}} record-grid-wide{{/if}}{{#if isSmall}} record-grid-small{{/if}}">
|
||||
<div class="left">
|
||||
{{#if hasMiddleTabs}}
|
||||
<div class="tabs middle-tabs btn-group">
|
||||
{{#each middleTabDataList}}
|
||||
<button
|
||||
class="btn btn-text btn-wide{{#if isActive}} active{{/if}}{{#if hidden}} hidden{{/if}}"
|
||||
data-tab="{{@key}}"
|
||||
>{{label}}</button>
|
||||
{{/each}}
|
||||
</div>
|
||||
{{/if}}
|
||||
<div class="middle">{{{middle}}}</div>
|
||||
<div class="extra">{{{extra}}}</div>
|
||||
<div class="bottom">{{{bottom}}}</div>
|
||||
</div>
|
||||
<div class="side{{#if hasMiddleTabs}} tabs-margin{{/if}}">
|
||||
{{{side}}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user